REKLAM ALANI
Mesaj Cevaplar Görüntüleme Yazar
[code]
class Çalışan():
    def __init__(self,isim,maaş,departman):
        print("Çalışan sınıfının init fonksiyonu")
        self.isim = isim
        self.maaş = maaş
        self.departman = departman
    def bilgilerigoster(self):
        
        print("Çalışan sınıfının bilgileri.....")
        
        print("İsim : {} \nMaaş: {} \nDepartman: {}\n".format(self.isim,self.maaş,self.departman))
    def departman_degistir(self,yeni_departman):
        print("Departman değişiyor..
1 1175 Nouri
[code]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace OOP_inheritance
{
public partial class Form1 : Form
{
public Form1()
{
//Form üzerine sürükle bırak ile eklenen komponentlerin ilk değerlerini güncelleme
InitializeComponent();
}

private **** Form1_Load(object sender, EventArgs e)
{
//program penceresi açılırken radio butonl
0 314 ^Phoenix^