19 Aralık 2013 Perşembe

C# da Fonksiyon Kullanımı

c#
c#

private void button1_Click(object sender, EventArgs e)
{
label1.Text = cevrehesapla(5, 7, 4).ToString();
}
int cevrehesapla(int a, int b, int c)
{
int cevre;
cevre = a + b + c;
return cevre;

}

0 yorum :

Yorum Gönder