using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Runtime.Remoting.Metadata.W3cXsd2001; 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); } } private void button3_Click(object sender, EventArgs e) { int sayi = int.Parse(Microsoft.VisualBasic.Interaction.InputBox("Bir Sayı Giriniz (1-2-3):")); switch (sayi) { case 1: MessageBox.Show("BİR"); break; case 2: MessageBox.Show("İKİ"); break ; case 3: MessageBox.Show("ÜÇ"); break; default: MessageBox.Show("1-2-3 den farklı bir sayı girdiniz"); break; } } private void button4_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:")); char islem = Convert.ToChar(Microsoft.VisualBasic.Interaction.InputBox("Bir İşlem Giriniz( * , / , - , + ")); int sonuc = 0; switch (islem) { case '+': sonuc = a + b; break; case '-': sonuc = a - b; break; case '*': sonuc = (a * b); break; case '/': sonuc = (a / b); break; default: MessageBox.Show("Hatalı Giriş Yaptınız"); break; } MessageBox.Show("Sonuç" + sonuc); } private void button5_Click(object sender, EventArgs e) { char c = Convert.ToChar(Microsoft.VisualBasic.Interaction.InputBox("Bir Karakter Giriniz")); switch (c) { case char n when (n >= 'a' && n <= 'z'): MessageBox.Show("Küçük Harf"); break; case char n when (n >= 'A' && n <= 'Z'): MessageBox.Show("Büyük Harf"); break; case char n when (n >= '0' && n <= '9'): MessageBox.Show("Rakam"); break; default: MessageBox.Show("Özel Karakter"); break; } } private void radioButton2_CheckedChanged(object sender, EventArgs e) { } private void radioButton1_CheckedChanged(object sender, EventArgs e) { } private void textBox2_TextChanged(object sender, EventArgs e) { int sayi = int.Parse(textBox2.Text); if (sayi % 2 == 0) { radioButton2.Checked = true; } else { radioButton1.Checked = true; } } private void button6_Click(object sender, EventArgs e) { int sayi = int.Parse(textBox3.Text); int sonuc = (sayi * sayi) + (sayi * sayi * sayi); label4.Text= sonuc.ToString(); } } }