Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Лаб_Повторения_с_цикли___while_цикъл
- {
- class Program
- {
- static void Main(string[] args)
- {
- int Number = int.Parse(Console.ReadLine());
- while(Number<1||Number>100)
- {
- Console.WriteLine("Invalid number!");
- Number=int.Parse(Console.ReadLine());
- }
- Console.WriteLine($"The number is:{Number}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment