static void Main(string[] args)
{
Random rnd = new Random();
string [] countries = { "Украина", "Казахстан", "Беларусь", "Киргизия", "Эстония","США" };
List<string> uniqueCountry = new List<string>();
int number;
for (int i = 0; i < countries.Length; i++)
{
do
{
number = rnd.Next(0, countries.Length);
} while (uniqueCountry.Contains(countries[number]));
uniqueCountry.Add(countries[number]);
}
foreach (var item in uniqueCountry)
{
Console.WriteLine(item);
}
Console.ReadKey();
}
TextChanged
. Если в нем написать label1.Text = textBox1.TextLength.ToString();
string aiChoice
Console.WriteLine("Го играть в камень ножницы бумага? Что выберешь?");
static void Main(string[] args)
{
string aiChoice = String.Empty;
Console.WriteLine("Го играть в камень ножницы бумага? Что выберешь?");
string userChoice = Console.ReadLine();
Console.WriteLine($"{userChoice} , значит?");
Random random = new Random();
int aiNumberChoice = random.Next(3);
switch (aiNumberChoice)
{
case 0:
aiChoice = "Камень";
break;
case 1:
aiChoice = "Ножницы";
break;
case 2:
aiChoice = "Бумага";
break;
}
Console.WriteLine("Компьютер выбрал " + aiChoice);
Console.ReadKey();
}
static void Main(string[] args)
{
int[] RandomSum = new int[9] {1,5,4,8,7,3,0,8,9};
int[] AllSum = new int[14] { 1, 5, 4, 8, 7, 3, 0, 8, 9, 1, 5, 4, 8, 7};
int count = 0;
for (int i = 0; i < RandomSum.Length; i++)
{
for (int j = 0; j < AllSum.Length; j++)
{
if(RandomSum[i] == AllSum[j])
{
count++;
}
}
}
Console.WriteLine($"Количество совпадении {count}");
Console.ReadKey();
}