Функционални
Използваме бисквитки и подобни технологии, за да предоставим нашите услуги. Използваме „сесийни“ бисквитки, за да Ви идентифицираме временно. Те се пазят само по време на активната употреба на услугите ни. След излизане от приложението, затваряне на браузъра или мобилното устройство, данните се трият.
Използваме бисквитки, за да предоставим опцията „Запомни Ме“, която Ви позволява да използвате нашите услуги без да предоставяте потребителско име и парола. Допълнително е възможно да използваме бисквитки за да съхраняваме различни малки настройки, като избор на езика, позиции на менюта и персонализирано съдържание.
Използваме бисквитки и за измерване на маркетинговите ни усилия.
using System;
namespace _3._8Scholarship
{
class Scholarship
{
static void Main(string[] args)
{
double dohod = double.Parse(Console.ReadLine());
double uspeh = double.Parse(Console.ReadLine());
double minZaplata = double.Parse(Console.ReadLine());
double minstip = 0.35 * minZaplata;
double stipUspeh = uspeh * 25;
if (uspeh >= 5.50)
{
Console.WriteLine($"You get a scholarship for excellent results {Math.Floor(stipUspeh)} BGN");
}
else if (dohod < minZaplata)
{
if (uspeh >= 5.50)
{
Console.WriteLine($"You get a scholarship for excellent results {Math.Floor(stipUspeh)}BGN");
}
else if (uspeh > 4.50)
{
Console.WriteLine($"You get a Social scholarship {Math.Floor(minstip)} BGN");
}
else
{
Console.WriteLine("You cannot get a scholarship!");
}
}
else if (dohod > minZaplata)
{
if (uspeh >= 5.50)
{
Console.WriteLine($"You get a scholarship for excellent results {Math.Floor(stipUspeh)} BGN");
}
else if (uspeh > 4.50)
{
Console.WriteLine("You cannot get a scholarship!");
}
else
{
Console.WriteLine("You cannot get a scholarship!");
}
}
else if (uspeh < 5.50)
{
Console.WriteLine("You cannot get a scholarship!");
}
}
}
}
using System;
namespace Scholarship
{
class Program
{
static void Main(string[] args)
{
double income = double.Parse(Console.ReadLine());
double grade = double.Parse(Console.ReadLine());
double minimumWage = double.Parse(Console.ReadLine());
double socialScholarship = minimumWage * 0.35;
double excellentScholarship = grade * 25;
if (income > minimumWage && grade > 4.5)
{
Console.WriteLine("You cannot get a scholarship!");
}
else if (income < minimumWage && grade > 5.5)
{
if (excellentScholarship > socialScholarship || socialScholarship > excellentScholarship || socialScholarship == excellentScholarship)
{
Console.WriteLine($"You get a social scholarship {excellentScholarship}");
}
}
else if (income > minimumWage && grade > 5.5)
{
Console.WriteLine($"You get a scholarship for excellent results {excellentScholarship} BGN");
}
}
}
}