-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
38 lines (34 loc) · 1.39 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
using System;
using testoveGit;
namespace StringWithWrongs
{
class Program
{
static void Main(string[] args)
{
while (true)
{
Console.WriteLine("БД ім'я: ");
string str1 = Console.ReadLine(); //БД ім'я
Console.WriteLine("Значення з тесту: ");
string str2 = Console.ReadLine();// значення з тесту
Console.WriteLine("БД нік: ");
string str3 = Console.ReadLine(); // БД нік
Console.WriteLine("Тест нік: ");
string str4 = Console.ReadLine(); // значення з тесту
PersonDetection.DeleteAt(ref str4);
bool isEqual = PersonDetection.CompareStrings(str3, str4, 0); // порівняння нікнейму
if (isEqual)
{
Console.WriteLine($"Порівняння нікнейму {isEqual}"); //якесь тіло умови
}
else
{
Console.WriteLine("Порівняння за ім'ям");
isEqual = PersonDetection.CompareStrings(str1, str2, 1);//перевірка ім'я
Console.WriteLine($"Порівняння ім'я {isEqual}");
}
}
}
}
}