Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _07.InvalidNumber
- {
- class Program
- {
- static void Main(string[] args)
- {
- int number = int.Parse(Console.ReadLine());
- if (!(number <= 200 && number >= 100) && number != 0)
- {
- Console.WriteLine("invalid");
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment