Nested loop behave strange

前端 未结 0 568
无人及你
无人及你 2020-12-05 19:02

this is a simple nested loop:

for (i in 1:2){ for (j in i:i+1){ print(i) print(j) }
}

the output is: 1 2 2 3

while I expect: 1 1 1 2 2 2 2 3

相关标签:
回答
  • 消灭零回复
提交回复
热议问题