29 Kasım 2013 Cuma

C# da While döngüsü ile çarpım tablosu

c#
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