amespace _123 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } string[] isimler = new string[5]; int[] notlar = new int[2]; int[] notlar2 = new int[2]; int[] notlar3 = new int[2]; int index = 0; private void textBox3_TextChanged(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { if (index < isimler.Length) { isimler[index] = textBox1.Text; notlar[index] = int.Parse(textBox2.Text); notlar2[index] = int.Parse(textBox3.Text); notlar3[index] = int.Parse(textBox4.Text); index++; textBox1.Text = " "; textBox2.Text = " "; textBox3.Text = " "; textBox4.Text = " "; } } private void button2_Click(object sender, EventArgs e) { for (int i = 0; i < isimler.Length; i++) { if (isimler[i] != null) { double ortalama = (notlar[i] + notlar2[i] + notlar3[i]); string durum = ortalama >= 50 ? "Geçti" : "Kaldı"; listBox1.Items.Add(isimler[i] + " " + " " + notlar[i] + " " + durum); } } } } }