Ruby
1class SumOf1 2 a = [] 3 def sum_of1(a) 4 sum = 0 5 i = 0 6 while i < a.size 7 sum += a[i] 8 i += 1 9 end 10 end 11 12 print "要素数:" 13 num = gets.to_i 14 x = [num] 15 16 i = 0 17 while i < num 18 print "x[#{i}] : " 19 x[i] = gets.to_i 20 i += 1 21 end 22 23 puts "全要素の合計は#{sum_of1(x)}です" 24end
配列aの全要素の合計を求めたいのですがメソッドのところでエラーが起きます、、、
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。