Advertisement
Spocoman

03. Vacation

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