Advertisement
Rodunskiy

Untitled

May 24th, 2023
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. class program
  2. {
  3.     static void Main(string[] args)
  4.     {
  5.         int number = ConvertToInt();
  6.     }
  7.  
  8.     static int ConvertToInt()
  9.     {
  10.         int templateNumber;
  11.         string userInput = string.Empty;
  12.  
  13.         while (int.TryParse(userInput, out templateNumber) == false)
  14.         {
  15.             Console.Write("Введите любое число:");
  16.             userInput = Console.ReadLine();
  17.         }
  18.  
  19.         return templateNumber;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement