15 Temmuz 2014 Salı

Girilen Sayının Faktöriyelini Bulma

Aşağıdaki kodlar anasayfa butonunun içine yazılır .

private void button1_Click(object sender, EventArgs e)
        {
            int sayi, i, f = 1;

            sayi = Convert.ToInt16(textBox1.Text);

            for (i = 1; i <= sayi; i++)
            {

                f = i * f;

            }
            label2.Text = "Sonuç = " + f;  

        }

Kodun Çalıştırılmış Hali


Hiç yorum yok:

Yorum Gönder