3. Kullanıcıdan aldığı 3 adet notun ortalamasını hesaplayan programı yazınız.
Console.Write("1. Notu Giriniz :");
sbyte
not1 = Convert.ToSByte(Console.ReadLine());
Console.Write("2. Notu Giriniz :");
sbyte
not2 = Convert.ToSByte(Console.ReadLine());
Console.Write("3. Notu Giriniz :");
sbyte
not3 = Convert.ToSByte(Console.ReadLine());
double
ortalama = Convert.ToDouble((not1 +
not2+not3))/3;
Console.Write("Toplam:" + ortalama);
Console.ReadLine();
Yorumlar
Yorum Gönder