using System; 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 WindowsFormsApp1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void textBox1_TextChanged(object sender, EventArgs e) { int sayi = int.Parse(Microsoft.VisualBasic.Interaction.InputBox("Bir Sayı Giriniz:")); if (sayi % 2 == 0) //çiftse { listBox2.Items.Add(sayi); } if (sayi % 2 == 1) //tekse { listBox1.Items.Add(sayi); } if (sayi % 3 == 0) //3ün katı ise { listBox3.Items.Add(sayi); } } private void button1_Click(object sender, EventArgs e) { int sayi = int.Parse(Microsoft.VisualBasic.Interaction.InputBox("Bir Sayı Giriniz:")); if (sayi % 2 == 0) //çiftse { listBox2.Items.Add(sayi); } if (sayi % 2 == 1) //tekse { listBox1.Items.Add(sayi); } if (sayi % 3 == 0) //3ün katı ise { listBox3.Items.Add(sayi); } } private void button2_Click(object sender, EventArgs e) { int a = int.Parse(Microsoft.VisualBasic.Interaction.InputBox("1.Sayı Giriniz:")); int b = int.Parse(Microsoft.VisualBasic.Interaction.InputBox("2.Sayı Giriniz:")); int c = int.Parse(Microsoft.VisualBasic.Interaction.InputBox("3.Sayı Giriniz:")); if (a > b & a > c) { MessageBox.Show("EB:" + a); } else if (b > c) { MessageBox.Show("EB" + b); } else { MessageBox.Show("EB" + c); } } } }