krasizorbov

Bake

Mar 24th, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.51 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Baking
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int batch_count = int.Parse(Console.ReadLine());
  10.  
  11.             for (int current_batch = 1; current_batch <= batch_count; current_batch++)
  12.             {
  13.                 bool flour = false;
  14.  
  15.                 bool eggs = false;
  16.  
  17.                 bool sugar = false;
  18.  
  19.                 string product_name = Console.ReadLine();
  20.  
  21.                 while (true)
  22.                 {
  23.  
  24.                     if (product_name == "sugar")
  25.                     {
  26.                         sugar = true;
  27.                     }
  28.                     else if (product_name == "eggs")
  29.                     {
  30.                         eggs = true;
  31.                     }
  32.                     else if (product_name == "flour")
  33.                     {
  34.                         flour = true;
  35.                     }
  36.                     else if (product_name == "Bake!")
  37.                     {
  38.                         if (sugar && eggs && flour)
  39.                         {
  40.                             break;
  41.                         }
  42.                         else
  43.                         {
  44.                             Console.WriteLine("The batter should contain flour, eggs and sugar!");
  45.                         }
  46.                     }
  47.  
  48.                     product_name = Console.ReadLine();
  49.                 }
  50.                 Console.WriteLine("Baking batch number {0}...", current_batch);
  51.  
  52.             }
  53.         }
  54.     }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment