結(jié)構(gòu)類似if的表達(dá)式,除了repeat;repeat另一個(gè)特點(diǎn)是大括號(hào)從外向內(nèi)看
1. While
While (expression) {
statement
}
2. For
For (expression) {
statement
}
#while, for區(qū)別在于前者執(zhí)行直至,后者執(zhí)行直至真
3. Repeat
repeat{
commands?
?if(condition){
? break
?}
}
4. 中止循環(huán)
break:另一用法中止switch
next:

