c# |
private void button1_Click(object sender, EventArgs e)
{
int sayı=1,cevap;
while (sayı<=10)
{
cevap = sayı * 5;
listBox1.Items.Add(sayı + "*5=" + cevap);
sayı++;
}
}
0 yorum :
Yorum Gönder