20 Aralık 2013 Cuma

C# da Çarpım Tablosu Yapımı

c#
c#

private void button1_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();

double sayi = double.Parse(textBox1.Text);

for (int i = 1; i < 11; i++)
{
listBox1.Items.Add(sayi + " * " + i + " = " + (sayi * i));
}

textBox1.Clear();
}

0 yorum :

Yorum Gönder