Advertisement
dragonbs

Moving

Oct 23rd, 2022
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.04 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _07.Moving
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int width = int.Parse(Console.ReadLine());
  10.             int lenght = int.Parse(Console.ReadLine());
  11.             int hight = int.Parse(Console.ReadLine());
  12.  
  13.             int homeFreeSpace = width * lenght * hight;
  14.  
  15.             string input = Console.ReadLine();
  16.  
  17.             while (input != "Done")
  18.             {
  19.                 int currentBox = int.Parse(input);
  20.                 homeFreeSpace -= currentBox;
  21.  
  22.                 if (homeFreeSpace <= 0)
  23.                 {
  24.                     int difference = Math.Abs(homeFreeSpace);
  25.                     Console.WriteLine($"No more free space! You need {difference} Cubic meters more.");
  26.                     break;
  27.                 }
  28.  
  29.                 input = Console.ReadLine();
  30.             }
  31.  
  32.             if (homeFreeSpace > 0)
  33.             {
  34.                 Console.WriteLine($"{homeFreeSpace} Cubic meters left.");
  35.             }
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement