Wpis z mikrobloga

Mirki, mam takie zadanie:

Using the C# language, have the function LetterChanges(str) take the str parameter being passed and modify it using the following algorithm. Replace every letter in the string with the letter following it in the alphabet (ie. c becomes d, z becomes a). Then capitalize every vowel in this new string (a, e, i, o, u) and finally return this modified string.


Wiem jak zrobić ostatni punkt, ale zaciąłem się po zamianie stringa na tablicę charów. Nie za bardzo wiem jak do tego podejść, albo wysilam się za bardzo, bo robiłem takie zadania w technikum :|

public static string LetterChanges(string str)
{
char[] ch = str.ToCharArray();

for ( int i = 0; i < ch.Length; i++)
{
char.ConvertFromUtf32(ch[i]);
Console.WriteLine(ch[i]);
}

return str;
}

Co dalej podziałać?

#programowanie
  • 3
  • Odpowiedz
  • Otrzymuj powiadomienia
    o nowych komentarzach