私は母音の母音を反復してすべての文字を前方に移動し、文字列"eioua"
を返しています。これは私のコードです:私は私のメソッドにパラメータとして"aeiou"
を渡すとRubyの繰り返し文字列
def vowel(letter)
vowels = "aeiou"
string = ""
index = 0
while index < letter.length
current_id = vowels.index(letter)
next_vowel = vowels[current_id + 1]
string += next_vowel
index += 1
end
string
end
、それだけで"a"
を取り、"eeeee"
を出力します。
vowel("aeiou") # => "eeeee"
ご質問はありますか? – sawa