示例
以下程序使用嵌套的for循环来查找2到100之间的质数-
#import <Foundation/Foundation.h>
int main () {
/* 局部变量定义 */
int a = 10;
/* do循环执行 */
do {
if( a == 15) {
/* 跳过迭代 */
a = a + 1;
continue;
}
NSLog(@"value of a: %d\n", a);
a++;
} while( a < 20 );
return 0;
}
编译并执行上述代码后,将产生以下结果-
2020-08-08 22:20:35.647 test[29998] value of a: 10
2020-08-08 22:20:35.647 test[29998] value of a: 11
2020-08-08 22:20:35.647 test[29998] value of a: 12
2020-08-08 22:20:35.647 test[29998] value of a: 13
2020-08-08 22:20:35.647 test[29998] value of a: 14
2020-08-08 22:20:35.647 test[29998] value of a: 16
2020-08-08 22:20:35.647 test[29998] value of a: 17
2020-08-08 22:20:35.647 test[29998] value of a: 18
2020-08-08 22:20:35.647 test[29998] value of a: 19