-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
56 lines (37 loc) · 1.36 KB
/
Program.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
47
48
49
50
51
52
53
54
55
56
public class MyClass
{
public static void Main()
{
// Dictionary<string,int>Statistika;
// Console.WriteLine($"menu");
// Console.WriteLine($"Quyidagilardan bittasini tanlang");
// Console.WriteLine($"1. Testni boshlash");
// Console.WriteLine($"2. Savol qo'shish");
// Console.WriteLine($"3. Ma'lumot");
// Console.WriteLine($"4. Statistika ");
// int k = int.Parse(Console.ReadLine()!);
// Console.WriteLine($"Ismingizni kiriting");
// string ism = Console.ReadLine()!;
// string[][] quiz = new string[100][];
List<List<string>> list=new List<List<string>>();
list.Add(new List<string>{"uywe","iue"});
foreach(var item in list[0])
{
System.Console.WriteLine(item);
}
// string[][] quiz = new string[100][];
// quiz[0] = new string[6]{"4 + 2 = ?", "3", "5", "6", "2", "8"};
// // quiz[1] = new string[6]{"4 * 2 = ?", "2", "8", "18", "22", "0"};
// // quiz[2] = new string[6]{"4 / 2 = ?", "5", "145", "652", "9", "2"};
// // quiz[4] = new string[6]{"4 - 2 = ?", "2", "0", "652", "9", "4"};
// int start = 2;
// Console.WriteLine($" Nechta savol kirtmoqchisiz : ");
// int end = int.Parse(Console.ReadLine()!);
// Console.WriteLine($"start = {start}");
// end += 2;
// AddQuestion.QuestionsAdd(ref quiz, ref start, ref end);
// Console.WriteLine($"start = {start}");
// Testniboshlash.print(ref quiz);
}
}