最佳答案
假设您有一个这样的 for 循环
for(n in 1:5) {
#if(n=3) # skip 3rd iteration and go to next iteration
cat(n)
}
如果满足某个条件,如何跳到下一个迭代?