回答編集履歴

1

修正

2017/02/18 20:22

投稿

退会済みユーザー
test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- ary0.each_with_index{|s, i| print s + ary1[i].to_s + "個、"}
9
+ ary0.each_with_index{|s, i| print s + ary1[i].to_s + "個#{i != ary1.length - 1? "、" : "。"}"}
10
10
 
11
11
  ```
12
12