using System;
public class Program
{
public static void Main()
double income;
double grades;
double averageIncome = 610.00;
Console.Write("Income in leva:");
income = Convert.ToDouble(Console.ReadLine());
Console.Write("Grade");
https: //dotnetfiddle.net/Authors/144716/Daniel17
grades = Convert.ToDouble(Console.ReadLine());
if (income < 0 || income > 6000.00)
Console.WriteLine("Income is not in the interval of 0 and 6000.00!");
return;
}
if (grades < 2.00 || grades > 6.00)
Console.WriteLine("Grade is not in the interval of 2.00 and 6.00!");
if (grades >= 5.5)
Console.WriteLine("You get a scholarship for excellent results");
if (income > averageIncome && grades <= 4.75)
Console.WriteLine("You cannot get a scholarshop!");
if (income < averageIncome && grades > 4.75)
Console.WriteLine("You get a Social scholarship 45 BGN!");