C# Windows Form uygulamasında 3 adet textBox denetimine kullanıcı tarafından sayı girilecek ve Buton tıklandığında girilen bu üç sayıdan en büyük sayı ve en küçük sayı bulunacaktır.
Örneğimizde if – else if – else yapısı ve && birleştirme operatörünü kullanacağız.
Form tasarımı aşağıdaki gibidir.
C# Kodları:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 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 Girlen_EnBuyukEnKucuk { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnBul_Click(object sender, EventArgs e) { int sayi1, sayi2, sayi3, enBuyuk, enKucuk; sayi1 = Convert.ToInt32(txtSayi1.Text); sayi2 = Convert.ToInt32(txtSayi2.Text); sayi3 = Convert.ToInt32(txtSayi3.Text); //En Büyük Sayıyı Bulma if (sayi1 > sayi2 && sayi1 > sayi3) enBuyuk = sayi1; else if (sayi2 > sayi3 && sayi2>sayi1) enBuyuk = sayi2; else enBuyuk = sayi3; if (sayi1 < sayi2 && sayi1 < sayi3) enKucuk = sayi1; else if (sayi2 < sayi3 && sayi2<sayi1) enKucuk = sayi2; else enKucuk = sayi3; txtEnBuyuk.Text = enBuyuk.ToString(); txtEnKucuk.Text = enKucuk.ToString(); } } } |
Ekran Çıktısı: