SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
51
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- using System;
- namespace _07.Cake_Ingredients
- {
- class Program
- {
- static void Main(string[] args)
- {
- int count = 0;
- while (true)
- {
- string ingredient = Console.ReadLine();
- if (ingredient.Equals("Bake!"))
- {
- Console.WriteLine($"Preparing cake with {count} ingredients.");
- break;
- }
- else
- {
- Console.WriteLine($"Adding ingredient {ingredient}.");
- count++;
- }
- }
- }
- }
- }
RAW Paste Data

