Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Ijunior
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Преобразованное число: " + GetNumber());
- }
- static int GetNumber()
- {
- int number = 0;
- string userInput = "";
- while (!int.TryParse(userInput, out number))
- {
- Console.Write("Введите число: ");
- userInput = Console.ReadLine();
- }
- return number;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment