using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
int[] arr = { 13, 42, 128, 331 };
switch (arr[0])
{
case 1:
Console.WriteLine(1);
break;
case 13:
Console.WriteLine(13);
break;
case 42:
Console.WriteLine(42);
break;
case 128:
Console.WriteLine(128);
break;
default:
Console.WriteLine("default");
break;
}
}
}
}
/*
run:
13
*/