Spocoman

Easter Shop

Nov 28th, 2021 (edited)
109
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 EasterShop
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int availableEggs = int.Parse(Console.ReadLine());
  10.             int soldEggs = 0;
  11.  
  12.             string input = Console.ReadLine();
  13.             while (input != "Close")
  14.             {
  15.                int eggs = int.Parse(Console.ReadLine());
  16.                 if (input == "Buy")
  17.                 {
  18.                     if (availableEggs - eggs < 0)
  19.                     {
  20.                         break;
  21.                     }
  22.                     availableEggs -= eggs;
  23.                     soldEggs += eggs;
  24.                 }
  25.                 else if (input == "Fill")
  26.                 {
  27.                     availableEggs += eggs;
  28.                 }
  29.                 input = Console.ReadLine();
  30.             }
  31.             if (input == "Close")
  32.             {
  33.                 Console.WriteLine("Store is closed!");
  34.                 Console.WriteLine($"{ soldEggs} eggs sold.");
  35.             }
  36.             else
  37.             {
  38.                 Console.WriteLine("Not enough eggs in store!");
  39.                 Console.WriteLine($"You can buy only {availableEggs}.");
  40.             }
  41.         }
  42.     }
  43. }
Add Comment
Please, Sign In to add comment