Не знам как довърша задачата. Judge (scholarship)
using System;
namespace MyFirstProject2
{
class Program
{
static void Main(string[] args)
{
double income = double.Parse(Console.ReadLine());
double average = double.Parse(Console.ReadLine());
double minimalWork = double.Parse(Console.ReadLine());
double Socialscholarship = minimalWork * 0.35;
if (income > minimalWork)
{
Console.WriteLine("You cannot get a scholarship!");
}
else if (income<minimalWork)
{
Console.WriteLine($"You get a Social scholarship { Socialscholarship} BGN");
}
if (average > 5.50)
{
double scholarship = average * 25;
Console.WriteLine($"You get a scholarship for excellent results {scholarship} BGN");
}
}
}
}
Благодаря, отново!