25
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int caseSwitch = 1;
8
if (caseSwitch == 1)
9
{
10
Console.WriteLine("Case 1");
11
}
12
else if (caseSwitch == 2 || caseSwitch == 4)
13
{
14
Console.WriteLine($"Case {caseSwitch}");
15
}
16
else if (caseSwitch == 3)
17
{
18
Console.WriteLine("Case 3");
19
}
20
else
21
{
22
Console.WriteLine($"Unexpcted value ({caseSwitch})");
23
}
24
}
25
}
Cached Result