-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitchLesson.cs
46 lines (37 loc) · 940 Bytes
/
switchLesson.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class switchLesson
{
static void Main(string[] args)
{
int num = Convert.ToInt32(Console.ReadLine());
/*
1 - Easy
2 - Medium
3 - Hard
other - "Invalid option"
*/
//your code goes here
switch (num)
{
case 1:
Console.WriteLine("Easy");
break;
case 2:
Console.WriteLine("Medium");
break;
case 3:
Console.WriteLine("Hard");
break;
default:
Console.WriteLine("Invalid option");
break;
}
}
}
}