static void Main(string[] args)
{
char[] Vowels = { 'а', 'о', 'и', 'е', 'ё', 'э', 'ы', 'у', 'ю', 'я', 'А', 'О', 'И', 'Е', 'Ё', 'Э', 'Ы', 'У', 'Ю', 'Я' };
string str = Console.ReadLine();
int count = 0;
for (int i = 0; i < str.Length; i++)
{
for (int j = 0; j < Vowels.Length; j++)
{
if (Vowels[j] == str[i])
{
count++;
}
}
}
Console.WriteLine(count);
static void Main(string[] args)
{
char[] Vowels = { 'а', 'о', 'и', 'е', 'ё', 'э', 'ы', 'у', 'ю', 'я', 'А', 'О', 'И', 'Е', 'Ё', 'Э', 'Ы', 'У', 'Ю', 'Я' };
string str = Console.ReadLine();
int count = 0;
for (int i = 0; i < str.Length; i++)
{
for (int j = 0; j < Vowels.Length; j++)
{
if (Vowels[j] == str[i])
{
count++;
}
}
}
Console.WriteLine(count);
}
Спасибо за ответы!