Advertisement
marto9119

Untitled

Feb 4th, 2023
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.55 KB | Source Code | 0 0
  1. using System;
  2. using System.Runtime.InteropServices.Marshalling;
  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 (amountOfPreparation > 0)
  16.             {
  17.                 string comandOrDishes = Console.ReadLine();
  18.  
  19.                 if (comandOrDishes != "End")
  20.                 {
  21.                     if (washes < 3)
  22.                     {
  23.                         count = int.Parse(comandOrDishes);
  24.  
  25.                         if (amountOfPreparation > 0)
  26.                         {
  27.                             amountOfPreparation -= count * 5;
  28.                             washes++;
  29.                             dishes += count;
  30.                             if (amountOfPreparation < 0 )
  31.                             {
  32.                                 break;
  33.                             }
  34.                         }
  35.                         else
  36.                         {
  37.                             break;
  38.                         }
  39.                        
  40.                     }
  41.                     else
  42.                     {
  43.                         count = int.Parse(comandOrDishes);
  44.  
  45.                         if (amountOfPreparation > 0)
  46.                         {
  47.                             amountOfPreparation -= count * 15;
  48.                             washes = 1;
  49.                             pots += count;
  50.                             if (amountOfPreparation < 0)
  51.                             {
  52.                                 break;
  53.                             }
  54.                         }
  55.                         else
  56.                         {
  57.                             break;
  58.                         }
  59.                     }
  60.                 }
  61.                 else
  62.                 {
  63.                     break;
  64.                 }
  65.  
  66.             }
  67.  
  68.             if (amountOfPreparation >=0)
  69.             {
  70.                 Console.WriteLine("Detergent was enough!");
  71.                 Console.WriteLine($"{dishes} dishes and {pots} pots were washed.");
  72.                 Console.WriteLine($"Leftover detergent {amountOfPreparation} ml.");
  73.             }
  74.             else
  75.             {
  76.                 Console.WriteLine($"Not enough detergent, {Math.Abs(amountOfPreparation)} ml. more necessary!");
  77.             }
  78.         }
  79.     }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement