Spocoman

06. Cake

Nov 21st, 2021 (edited)
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.93 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Cake
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int x = int.Parse(Console.ReadLine());
  10.             int y = int.Parse(Console.ReadLine());
  11.             int pieceOfCake = x * y;
  12.             int hungry = 0;
  13.             while (pieceOfCake >= hungry)
  14.             {
  15.                 string command = Console.ReadLine();
  16.              
  17.                 if (command == "STOP")
  18.                 {
  19.                     break;
  20.                 }
  21.                 hungry += int.Parse(command);
  22.             }
  23.  
  24.                
  25.             if (pieceOfCake >= hungry)
  26.             {
  27.                 Console.WriteLine($"{pieceOfCake - hungry} pieces are left.");
  28.                
  29.             }
  30.             else
  31.             {
  32.                 Console.WriteLine($"No more cake left! You need {hungry - pieceOfCake} pieces more.");
  33.                
  34.             }
  35.         }
  36.     }
  37. }
  38.  
Add Comment
Please, Sign In to add comment