for (n=1; n<=10; n++) { if (n%3==0) countinue; printf(“%d”,n); } 此程序段的执行结果是()
for (n=1; n<=10; n++) { if (n%3==0) countinue; printf(“%d”,n); } 此程序段的执行结果是()
在while命令的循环体中执行了countinue命令之后,该循环控制命令便立即结束执行。
在while命令的循环体中执行了countinue命令之后,该循环控制命令便立即结束执行。
for (n=1; n<;=10; n++){if (n%3==0) countinue;printf(“%d”,n);}此程序段的执行结果是() A: 12457810 B: 369 C: 12 D: 1234567890
for (n=1; n<;=10; n++){if (n%3==0) countinue;printf(“%d”,n);}此程序段的执行结果是() A: 12457810 B: 369 C: 12 D: 1234567890
1