Aşağıdaki kodlar hesapla butonun içine yazılır .
private void
button1_Click(object sender, EventArgs e)
{
int sayi1, sayi2, sayi3, toplam, i,say;
sayi1 =Convert.ToInt16
(textBox1.Text); //başlangıç butonu
sayi2 =Convert.ToInt16
(textBox2.Text); //bitiş butonu
sayi3 =Convert.ToInt16
(textBox3.Text); //artış miktarı butonu
toplam = 0;
say =0;
for (i = sayi1; i <= sayi2; i++)
{
if (i % sayi3 == 0)
{ say++;
toplam = toplam + i;
}
}
label4.Text ="Terim Sayısı= "+
say +"Toplam =" + toplam ;
textBox1.Text = "";
textBox2.Text = "";
textBox3.Text = "";
}
Kodun
Çalıştırılmış Hali
Hiç yorum yok:
Yorum Gönder