Vowels Sum C#
using System;
namespace Character_Sequence
{
class Program
{
static void Main(string[] args)
{
string word = Console.ReadLine();
int sum = 0;
for (int i = 0; i <= word.Length; i++)
{
if (word[i] == 'a')
{
sum = sum + 1;
}
else if (word[i] == 'e')
{
sum = sum + 2;
}
else if (word[i] == 'i')
{
sum = sum + 3;
}
else if (word[i] == 'o')
{
sum = sum + 4;
}
else if (word[i] == 'u')
{
sum = sum + 5;
}
}
Console.WriteLine(sum);
}
}
}
Може ли малко помощ със задачата - къде бъркам?