Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Linq;
- namespace asereje
- {
- class Program
- {
- static void Main(string[] args)
- {
- string text = Console.ReadLine();
- int count = 0;
- while(text != "Stop"){
- text = Console.ReadLine();
- count++;
- }
- Console.WriteLine(count);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement