Advertisement
marto9119

Untitled

Feb 4th, 2023
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.59 KB | Source Code | 0 0
  1. using System;
  2.  
  3.  
  4. namespace MyApp // Note: actual namespace depends on the project name.
  5. {
  6.     internal class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int bottles = int.Parse(Console.ReadLine());
  11.             int amountOfPreparation = bottles * 750;
  12.             int washes = 1; int count = 0;
  13.             int dishes = 0 , pots = 0 ;
  14.  
  15.             while (true)
  16.             {
  17.                 string comandOrDishes = Console.ReadLine();
  18.  
  19.                 if (comandOrDishes != "End")
  20.                 {
  21.                     count = int.Parse(comandOrDishes);
  22.  
  23.                     if (washes < 3)
  24.                     {
  25.                          if (amountOfPreparation > 0)
  26.                         {
  27.                             amountOfPreparation -= count * 5; washes++; dishes += count;
  28.  
  29.                             if (amountOfPreparation < 0 )
  30.                             {
  31.                                 Console.WriteLine($"Not enough detergent, {Math.Abs(amountOfPreparation)} ml. more necessary!");
  32.                                 break;
  33.                             }
  34.                         }
  35.                         else
  36.                         {
  37.                             Console.WriteLine($"Not enough detergent, {Math.Abs(amountOfPreparation)} ml. more necessary!");
  38.                             break;
  39.                         }
  40.                        
  41.                     }
  42.                     else
  43.                     {
  44.                         if (amountOfPreparation > 0)
  45.                         {
  46.                             amountOfPreparation -= count * 15; washes = 1; pots += count;
  47.  
  48.                             if (amountOfPreparation < 0)
  49.                             {
  50.                                 Console.WriteLine($"Not enough detergent, {Math.Abs(amountOfPreparation)} ml. more necessary!");
  51.                                 break;
  52.                             }
  53.                         }
  54.                         else
  55.                         {
  56.                             Console.WriteLine($"Not enough detergent, {Math.Abs(amountOfPreparation)} ml. more necessary!");
  57.                             break;
  58.                         }
  59.                     }
  60.                 }
  61.                 else
  62.                 {
  63.                     Console.WriteLine("Detergent was enough!");
  64.                     Console.WriteLine($"{dishes} dishes and {pots} pots were washed.");
  65.                     Console.WriteLine($"Leftover detergent {amountOfPreparation} ml.");
  66.  
  67.                     break;
  68.                 }
  69.  
  70.             }
  71.  
  72.         }  
  73.     }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement