Advertisement
yakovmonarh

Untitled

Aug 10th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. public static void Main(string[] args)
  2. {  
  3.     int userNumber;
  4.        
  5.     do
  6.     {
  7.         Console.WriteLine("Введите целое число");
  8.     }
  9.     while(int.TryParse(Console.ReadLine(), out userNumber) == false);
  10.            
  11.     Console.WriteLine("Поздравляю, вы ввели: {0}", userNumber);
  12.     Console.ReadKey();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement