Задача 06.Travelling
Може ли малко помощ за задача 06.Travelling?Дава ми 70/100.
Ето го и кода:
using System;
using System.Threading;
namespace Travelling
{
public class Program
{
public static void Main(string[] args)
{
while (true)
{
string destination = Console.ReadLine();
if (destination == "End")
{
return;
}
string input = Console.ReadLine();
if (input == "End")
{
return;
}
int budget = int.Parse(input);
int currentBudget = 0;
while (currentBudget < budget)
{
input = Console.ReadLine();
if (input == "End")
{
return;
}
int sum = int.Parse(input);
currentBudget += sum;
}
Console.WriteLine($"Going to {destination}!");
}
}
}
}
Благодаря!