YILDIZLARDAN ÜÇGEN YAPIMI
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace yildiz_ucgen
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
string yildiz = "* ";
int a = int.Parse(textBox1.Text);
if(a>10)
{
MessageBox.Show("Lütfen 10 üzeri sayı girmeyiniz!");
}
else
{
for(int i = 1; i <= 10; i++)
{
listBox1.Items.Add(yildiz);
yildiz += " * ";
}
}
}
}
}
Yorumlar
Yorum Gönder