标签: ruby
我有一个关于连接的问题。我想打印2的表。
此程序正在打印:
2 4 6 8 . . 20 only
我陷入了连接状态。
以下是代码:
x = 0 loop do x += 1 #increment of 1 break if x >= 11 puts x end
答案 0 :(得分:0)
您可以使用简单的for循环
for i in 1..10 do puts "2 x #{i} = #{ 2*i }" end
#{ }是字符串interpolation
#{ }