Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public int ReadInt()
- {
- int result;
- do
- {
- Console.Write("Введите число: ");
- } while (int.TryParse(Console.ReadLine(), out result) == false);
- return result;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement