Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace _07_Cake_Ingredients
- {
- class Program
- {
- static void Main(string[] args)
- {
- for (int i = 0; ; i++)
- {
- string Ingredient = Console.ReadLine();
- if (Ingredient == "Bake!")
- {
- Console.WriteLine($"Preparing cake with {i} ingredients.");
- break;
- }
- Console.WriteLine($"Adding ingredient {Ingredient}.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment