Complete the switch
statement, and add the correct
keyword at the end to specify some code to run if there is no case match in the switch
statement.
int day = 3;
switch (@(3))
{
@(4) 1:
Console.WriteLine("Today is Saturday");
break;
@(4) 2:
Console.WriteLine("Today is Sunday");
@(5);
@(7):
Console.WriteLine("Looking forward to the Weekend");
@(5);
}
int day = 3;
switch (day)
{
case 1:
Console.WriteLine("Today is Saturday");
break;
case 2:
Console.WriteLine("Today is Sunday");
break;
default:
Console.WriteLine("Looking forward to the Weekend");
break;
}