ivanitd

Ivan Ivanov

Posted on January 20, 2023

10. Invalid Number
using System;

namespace Invalid_Number
{
internal class Program
{
    static void Main(string[] args)
    {
        int number = int.Parse(Console.ReadLine());

        if (number == 0 || number >= 100 && number <= 200)
        {
            Console.WriteLine();
        }
        else
        {
            Console.WriteLine("invalid");
        }
    }
}
}
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
ivanitd
Ivan Ivanov

Posted on January 20, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

10. Invalid Number
csharp 10. Invalid Number

January 20, 2023

11. Fruit Shop (Switch Construction)
csharp 11. Fruit Shop (Switch Construction)

January 20, 2023