-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartScreen.cs
44 lines (41 loc) · 1.15 KB
/
StartScreen.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
using System;
using System.Collections.Generic;
using System.Text;
namespace LessonX
{
class StartScreen
{
static void Main(string[] args)
{
Console.WriteLine("Добро пожаловать в сборник задач из Урока №X. Вам на выбор представлены:");
Console.WriteLine(
"\n" +
"1. ...\n" +
"2. ...\n" +
"3. ...\n" +
"\n"
);
Console.WriteLine("Введите цифру, чтобы продолжить:");
string choice = Console.ReadLine();
Console.WriteLine("\n");
switch (choice)
{
case "1":
{
Template.start();
break;
}
case "2":
{
Template.start();
break;
}
case "3":
{
Template.start();
break;
}
}
}
}
}