wk里有没有类似c语言里的break的命令
在这个颜值当道,屌丝闪边的时代,拼不过颜值拼内涵,只有知识丰富才能提升一个人的内在气质和修养,所谓人丑就要多学习,今天图老师给大家分享wk里有没有类似c语言里的break的命令,希望可以对大家能有小小的帮助。
和C一样用喽
The break, continue, and next statements can be used to break out of loops that would otherwise keep going. break drops out of the innermost while, for, or do loop. continue causes the next iteration of the loop to begin.
Execution will go to the test eXPression in a while or do loop, and to expression3 in a for loop. next reads the next record and starts the main input loop again.