c# |
private void button1_Click(object sender, EventArgs e)
{
int n, s = 1;
n = Convert.ToInt32(textBox1.Text);
string yıldız = "*";
while (s<=n)
{
listBox1.Items.Add(yıldız);
s++;
yıldız = yıldız + "*";
}
}
0 yorum :
Yorum Gönder