using System;
public class Program
{
public static void Main()
int theVal = 60;
//TODO: switch statement
switch (theVal){
case 50:
Console.WriteLine("theVal is 50");
break;
case 51:
Console.WriteLine("theVal is 51");
case 52:
case 53:
case 54:
Console.WriteLine("theVal is between 52 and 54");
default:
Console.WriteLine("theVal is something else");
}