Advertisement
tochka

Untitled

Jan 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _09._Count_the_Integers
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int count = 0;
  10.  
  11. while (true)
  12. {
  13. try
  14. {
  15. int n = int.Parse(Console.ReadLine());
  16. count++;
  17. }
  18. catch
  19. {
  20. break;
  21. }
  22. }
  23.  
  24. Console.WriteLine(count);
  25.  
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement