Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Travelling
- {
- class Program
- {
- static void Main(string[] args)
- {
- while (true)
- {
- double sum = 0;
- string destination = Console.ReadLine();
- if (destination == "End")
- {
- break;
- }
- double neededMoney = double.Parse(Console.ReadLine());
- while (sum < neededMoney)
- {
- double input = double.Parse(Console.ReadLine());
- sum += input;
- }
- Console.WriteLine($"Going to {destination}!");
- }
- }
- }
- }
Advertisement
 
                    Add Comment                
                
                        Please, Sign In to add comment                    
                 
                    