Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Travelling
- {
- class Program
- {
- static void Main(string[] args)
- {
- string Destinacion = Console.ReadLine();
- while (Destinacion !="End")
- {
- double Budget = double.Parse(Console.ReadLine());
- double SaveMoney = 0;
- while (Budget> SaveMoney)
- {
- SaveMoney += double.Parse(Console.ReadLine());
- }
- Console.WriteLine($"Going to {Destinacion}!");
- Destinacion = Console.ReadLine();
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment