Ara
C# İf Else Örnekleri Ortalama Geçtimi Kaldımı
- www.sametmedya.com
- 21 Ara 2015
- 1 dakikada okunur

Klavyeden öğrencinin 2 adet not bilgisi girildikten sonra, ortalama 50 ve üzerinde ise ekrana “Geçti” değilse “Kaldı” yazdıran programın Console uygulamasını
Console.Write("1.Notu Girin:");
int not1=Convert.ToInt32(Console.ReadLine());
Console.Write("2.Notu Girin:");
int not2=Convert.ToInt32(Console.ReadLine());
double ort = (not1 + not2) / 2;
if (ort >= 50)
Console.WriteLine("Dersten Geçtiniz.");
else
Console.WriteLine("Dersten Kaldınız.");
Console.ReadKey();
Comments