Toy Shop 40/100 в Judge
Здравейте
Задачата Toy Shop ми дава 40/100 в Judge и не мога да разбера защо , Някой има ли идея ?
благодаря
https://pastebin.com/Nn7xT6Uf
Здравейте
Задачата Toy Shop ми дава 40/100 в Judge и не мога да разбера защо , Някой има ли идея ?
благодаря
https://pastebin.com/Nn7xT6Uf
Първата проверка трябва да оправиш. Добави едно else и готово :)
Пак не се получава , резултата остава 40/100 в Judge
В първата проверка имаш още проценти да обработваш, така е дадено по условие......Ето малко напътствие за да се ориентираш:
double priceExcursie = double.Parse(Console.ReadLine());
int puzelsCount = int.Parse(Console.ReadLine());
int dolsCount = int.Parse(Console.ReadLine());
int bearsCount = int.Parse(Console.ReadLine());
int minionsCount = int.Parse(Console.ReadLine());
int carsCount = int.Parse(Console.ReadLine());
double totalPriceToys = (puzelsCount * puzelPrice) +
(dolsCount * dolsPrice) +
(bearsCount * bearsPrice) +
(minionsCount * minionsPrice) +
(carsCount * carsPrice);
double totalCountToys = puzelsCount + dolsCount + bearsCount + minionsCount + carsCount;
double discount = totalPriceToys * 0.25;
double rent = 0;
double restMoney = 0;
if (totalCountToys >= 50)
{
totalPriceToys -= discount;
rent = totalPriceToys * 0.10;
restMoney = totalPriceToys - rent;
}
else
{
rent = totalPriceToys * 0.10;
restMoney = totalPriceToys - rent;
}