Advertisement
IvetValcheva

05. Travelling

Mar 16th, 2024
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1.  
  2. string input = Console.ReadLine();
  3.  
  4. while (input != "End")
  5. {
  6.     string destination = input;
  7.     double budget = double.Parse(Console.ReadLine());
  8.  
  9.     double money = 0;
  10.  
  11.     while (money < budget)
  12.     {
  13.         money += double.Parse(Console.ReadLine());
  14.     }
  15.  
  16.     Console.WriteLine($"Going to {destination}!");
  17.     input = Console.ReadLine();
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement