✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
string day, msg = "Зайвий день";
day = System.Console.ReadLine ();
switch (day)
{
case "1": case "5":
switch (day)
{
case "1": msg = "Початок тижня"; break;
default: msg = "Середина тижня"; break;
} Break;
case "6": case "7": msg = "Закінчення тижня"; break;
default: msg = "Немає такого дня"; break;
}
System.Console.WriteLine (msg);
(**CharpBase**)