一、for
main(){ // for循环 for(int i in [1,2,3,4])print(i); for(var i in ['a','b','c'])print(i); for(int i=5;i<=10;i++)print(i); // 1 // 2 // 3 // 4 // a // b // c // 5 // 6 // 7 // 8 // 9 // 10 }
二、while
void main() { // while循环 int i = 1; while (i < 10) { print(i); i = i + 2; } // 1 // 3 // 5 // 7 // 9 }
三、do-while
void main() { int i = 1; do { print(i); i++; } while (i < 3); // 1 // 2 }