7. Working Hours (Short Solution)

ivanitd

Ivan Ivanov

Posted on January 20, 2023

7. Working Hours (Short Solution)
using System;

namespace WorkingHours
{
class Program
{
    static void Main(string[] args)
    {
        int hour = int.Parse(Console.ReadLine());
        string weekDay = Console.ReadLine();

        if ((hour >= 10 && hour <= 18) && weekDay != "Sunday")
        {
            Console.WriteLine("open");
        }
        else
        {
            Console.WriteLine("closed");
        }
    }
}
}
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