Advertisement
Spocoman

Trip Expenses

Oct 5th, 2023
1,038
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.21 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TripExpenses
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int days = int.Parse(Console.ReadLine());
  10.             string command;
  11.             double dayCash = 0;
  12.  
  13.             for (int i = 0; i < days; i++)
  14.             {
  15.                 int dayProducts = 0;
  16.                 dayCash += 60;
  17.  
  18.                 while (true)
  19.                 {
  20.                     command = Console.ReadLine();
  21.                     if (command == "Day over")
  22.                     {
  23.                         Console.Write($"Money left from today: {dayCash:f2}.");
  24.                         break;
  25.                     }
  26.  
  27.                     int productPrice = int.Parse(command);
  28.                     if (productPrice <= dayCash)
  29.                     {
  30.                         dayCash -= productPrice;
  31.                         dayProducts++;
  32.                     }
  33.  
  34.                     if (dayCash == 0)
  35.                     {
  36.                         Console.Write("Daily limit exceeded!");
  37.                         break;
  38.                     }
  39.                 }
  40.                 Console.WriteLine($" You've bought {dayProducts} products.");
  41.             }
  42.         }
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement