Advertisement
Spocoman

05. Travelling

Nov 21st, 2021 (edited)
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.80 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Travelling
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {          
  9.             string destination = Console.ReadLine();
  10.  
  11.             while (destination != "End")
  12.             {
  13.                 double budget = double.Parse(Console.ReadLine());
  14.                 double total = 0;
  15.  
  16.                 while (total < budget)
  17.                 {
  18.                     string money = Console.ReadLine();  
  19.  
  20.                     if ( money == "End")
  21.                     {
  22.                         Environment.Exit(0);
  23.                     }
  24.                     total += double.Parse(money);
  25.                 }
  26.  
  27.                 Console.WriteLine($"Going to {destination}!");
  28.                 destination = Console.ReadLine();
  29.             }
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement