Advertisement
bodyquest

Problem #7. Cake Ingredients

Oct 2nd, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. int count = -1;
  2.  
  3. do
  4. {
  5. var input = (Console.ReadLine());
  6. count++;
  7. if (input == "Bake!")
  8. {
  9. Console.WriteLine($"Preparing cake with {count} ingredients.");
  10. break;
  11. }
  12. Console.WriteLine($"Adding ingredient {input}.");
  13. }
  14. while (count <= 20);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement