我也是醉了,这么大个if语句你检测不到吗非说我没包含if i == 3。 我结果都打印出来了好伐?
#include <stdio.h> int main() { int sum = 0; int i; for(i=1; i<=10; i++) { printf("%d\n", i); //是不是少了一个判断呢? if (i == 3) goto DONE; //在这里使用goto语句 } DONE: printf("结束for循环了...."); //请选择合适位置添加标识符 return 0; }