Advertisement
desislava_topuzakova

Untitled

May 23rd, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace asereje
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. string text = Console.ReadLine();
  11. int count = 0;
  12.  
  13. while(text != "Stop"){
  14. text = Console.ReadLine();
  15. count++;
  16. }
  17.  
  18. Console.WriteLine(count);
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement