Проблем със задача Пътешествие
Здравейте колеги,имам проблем със задача пътешествие написал съм е цялата тествах е с входните примери всичко съвпада,но в джъдж ми дава 72//100.Ето кода,моля кажете ми къде греша.
using System;
namespace Journey
{
class Program
{
static void Main(string[] args)
{
double budget = double.Parse(Console.ReadLine());
string seasons = Console.ReadLine();
double price = 0;
if (budget <= 100)
{
if (seasons == "summer")
{
price = budget * 0.30;
Console.WriteLine("Somewhere in Bulgaria");
Console.WriteLine($"Camp - {price:f2}");
}
else if (seasons == "winter")
{
price = budget * 0.70;
Console.WriteLine("Somewhere in Bulgaria");
Console.WriteLine($"Hotel - {price:f2}");
}
}
else if (budget > 100 && budget <= 1000)
{
if (seasons == "summer")
{
price = budget * 0.40;
Console.WriteLine("Somewhere in Balkans");
Console.WriteLine($"Camp - {price:f2}");
}
else if (seasons == "winter")
{
price = budget * 0.80;
Console.WriteLine($"Somewhere in Balkans");
Console.WriteLine($"Hotel - {price:f2}");
}
}
else if (budget > 1000)
{
if (seasons == "summer")
{
price = budget * 0.90;
Console.WriteLine($"Somewhere in Europe");
Console.WriteLine($"Hotel - {price:f2}");
}
}
}
}
}
Благодаря ти Генади