为什么gets
用户输入框数时总是添加新行?
我希望下一个打印语句与输入显示在同一行。
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
在收到第二个输入之前,我不想开始新的一行。