Rubyプログラミング初心者です。私のプログラムは、特定の文字列内の偶数長の単語の数です。しかし、それは次のエラーを示しています
[0, 0] の未定義のメソッド '<' :配列
これが私のコードです
def even(words, n)
i = 0, m = 0
while i < n do
count = count + words[i].length
if count%2 == 0 then
m = m + 1
end
i = i + 1
end
return m
end
prinnt "Enter The String:"
s = gets.chomp
words = s.split()
n = words.length
x = even(words, n)
puts x