Advertisement
Guest User

07. Cake Ingredients - (Недостатъчно време)

a guest
Jan 27th, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp8
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int ingreediantCounter = 0;
  10. string ingreediant;
  11. while (true)
  12. {
  13. ingreediant = Console.ReadLine();
  14. if (ingreediant == "Bake") { Console.WriteLine($"Preparing cake with {ingreediantCounter} ingredients."); break; }
  15. else
  16. {
  17. ingreediantCounter++;
  18. Console.WriteLine($"Adding ingredient {ingreediant}.");
  19. }
  20. }
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement