continue statement causes the next iteration of the enclosing for , while , or do loop to begin; break causes the innermost enclosing loop or switch to be exited immediately.
多重循环 还可以考虑GOTO
goto不是很容易出问题吗qwq
慎用,但是多重循环除了return 以外 也没啥返回手段, 比如第四层循环想跳到第二层或者直接跳出,一个break是不行的
对,但可以搞个flag(话说我好像就没写过goto
continue statement causes the next iteration of the enclosing for , while , or do loop to begin; break causes the innermost enclosing loop or switch to be exited immediately.
多重循环 还可以考虑GOTO
goto不是很容易出问题吗qwq
慎用,但是多重循环除了return 以外 也没啥返回手段,
比如第四层循环想跳到第二层或者直接跳出,一个break是不行的
对,但可以搞个flag(
话说我好像就没写过goto