Advertisement
marto9119

Untitled

Feb 4th, 2023
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.50 KB | Source Code | 0 0
  1. using System;
  2.  
  3.  
  4. namespace MyApp
  5. {
  6.     internal class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int width = int.Parse(Console.ReadLine());
  11.             int length = int.Parse(Console.ReadLine());
  12.             int heigth = int.Parse(Console.ReadLine());
  13.  
  14.             int apartamentPlace = width * length * heigth;
  15.  
  16.             while (true)
  17.             {
  18.                 string boxOrComand = Console.ReadLine();
  19.  
  20.                 if (boxOrComand != "Done")
  21.                 {
  22.                     int boxMulve = int.Parse(boxOrComand);
  23.  
  24.                     if (apartamentPlace > 0 )
  25.                     {
  26.                         apartamentPlace -= boxMulve;
  27.                        
  28.                         if (apartamentPlace <0)
  29.                         {
  30.                             Console.WriteLine($"No more free space! You need { Math.Abs(apartamentPlace)} Cubic meters more.");
  31.  
  32.                             break;
  33.                         }
  34.                     }
  35.                     else
  36.                     {
  37.                         Console.WriteLine($"No more free space! You need {Math.Abs(apartamentPlace)} Cubic meters more.");
  38.                        
  39.                         break;
  40.                     }
  41.                    
  42.                 }
  43.                 else
  44.                 {
  45.                     Console.WriteLine($"{apartamentPlace} Cubic meters left.");
  46.  
  47.                     break;
  48.                 }
  49.             }
  50.         }
  51.  
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement