Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace homework
- {
- class Program
- {
- static int ConvertToInt()
- {
- Console.WriteLine("Введите число: ");
- bool success = false;
- int result=0;
- while (!success)
- {
- success = int.TryParse(Console.ReadLine(), out result);
- if (!success) Console.WriteLine("Введено не число. Повторите попытку");
- else Console.WriteLine("Успешно!");
- }
- return result;
- }
- static void Main(string[] args)
- {
- int number = ConvertToInt();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment