Advertisement
dragonbs

Vacation

Oct 12th, 2022
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.49 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _03.Vacation
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double tripPrice = double.Parse(Console.ReadLine());
  10.             double totalMoney = double.Parse(Console.ReadLine());
  11.  
  12.             int daysCounter = 0;
  13.             int spendDaysCounter = 0;
  14.  
  15.             while (totalMoney < tripPrice)
  16.             {
  17.                 string command = Console.ReadLine();
  18.                 double currentMoney = double.Parse(Console.ReadLine());
  19.  
  20.                 daysCounter++;
  21.  
  22.                 if (command == "spend")
  23.                 {
  24.                     spendDaysCounter++;
  25.  
  26.                     totalMoney -= currentMoney;
  27.  
  28.                     if (totalMoney < 0)
  29.                     {
  30.                         totalMoney = 0;
  31.                     }
  32.  
  33.                     if (spendDaysCounter == 5)
  34.                     {
  35.                         Console.WriteLine("You can't save the money.");
  36.                         Console.WriteLine(daysCounter);
  37.                         break;
  38.                     }
  39.                 }
  40.                 else if (command == "save")
  41.                 {
  42.                     spendDaysCounter = 0;
  43.  
  44.                     totalMoney += currentMoney;
  45.  
  46.                     if (totalMoney >= tripPrice)
  47.                     {
  48.                         Console.WriteLine($"You saved the money for {daysCounter} days.");
  49.                     }
  50.                 }
  51.             }
  52.         }
  53.     }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement