gets
ユーザーがボックスの数を入力すると、常に新しい行が追加されるのはなぜですか?
次の print ステートメントを入力と同じ行に表示したい。
print "Enter the number of boxes: "
boxes = gets.chomp
print "Enter number of columns to print the boxes in: "
columns = gets.chomp
出力を次のようにしたい:
Enter the number of boxes: 47 Enter number of columns to print the boxes in: 4
2 番目の入力が受信されるまで、新しい行を開始したくありません。