这下面两种写法慕课都能通过??
第二种不是infinite loop吗?
难道我看错了????还是慕课的答题出问题??
第一种
#include <stdio.h> int main() { int sum = 0; int i; for(i=1; i<=10; i++) { printf("%d\n", i); if(i==3) { goto END0; } } END0:printf("结束for循环了...."); return 0; }
第二种
#include <stdio.h> int main() { int sum = 0; int i; for(i=1; i<=10; i++) { printf("%d\n", i); LOOP : if (i == 3) { goto LOOP; } } printf("结束for循环了...."); return 0; }
慕的地6079101
慕雪0585047
Tanh
onemoo
相关分类