Problem - 04.Darts - от Exam 09-10.03.2019
Защо не ми работи програмата? Моля за помощ!
Условието е
Защо не ми работи програмата? Моля за помощ!
Условието е
Здравей,
наистина почти нищо не пипнах и - 100/100:
===================
string command = Console.ReadLine();
//int n = int.Parse(Console.ReadLine()); // това е излишно
while ((points != 0) && (command!= "Retire"))
{
int n = int.Parse(Console.ReadLine()); // !!!
if (command == "Single")
{
if (points >= n)
{
points = points - n;
brUspeshni++;
}
else { brNeuspeshni++; }
}
else if (command =="Double")
{
if (points >= (2*n))
{
points = points - 2*n;
brUspeshni++;
}
else { brNeuspeshni++; }
}
else if (command =="Triple")
{
if (points >= (3*n))
{
points = points - 3*n;
brUspeshni++;
}
else { brNeuspeshni++; }
}
else if (command == "Retire")
{
break;
}
command = Console.ReadLine(); // това го преместих, за да може while цикъла да чака/прочете навреме Retire
}
===============
Поздрави,
Иван
Много ти благодаря!