在 for的双层循环中,如何只退出最里面的一层循环。如(其中rep即为for)
for
rep(i,1,n){ rep(j,i+1,n){ } }
如何只退出rep(j,i+1,n)这层循环
rep(j,i+1,n)