Kodları:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.Write("1.yazılı notu:");
int x, y, s;
x = Convert.ToInt32(Console.ReadLine());
Console.Write("2.yazılı notu:");
y=Convert.ToInt32(Console.ReadLine());
Console.Write("Sözlü notunuzu giriniz:");
s = Convert.ToInt32(Console.ReadLine());
int ort = (x + y + s) / 3;
if (ort >= 0 && ort <= 24)
Console.WriteLine("ders notu 0");
else if (ort >= 25 && ort <= 44)
Console.WriteLine("ders notu 1");
else if (ort >= 45 && ort <= 54)
Console.WriteLine("ders notu 2");
else if (ort >= 55 && ort <= 69)
Console.WriteLine("ders notu 3");
else if (ort >= 70 && ort <= 84)
Console.WriteLine("ders notu 4");
else if (ort >= 85 && ort <= 100)
Console.WriteLine("ders notu 5");
else if (ort < 0 && ort > 100)
Console.WriteLine("Girilen not geçersizdir");
Console.ReadKey();
}
}
}
Hazırlayan:Adil AYGÜN
Hiç yorum yok:
Yorum Gönder