一开始没有打sum=0 然后结果就成为了155 想要知道为什么是155?
#include <stdio.h>int main(){ int sum = 0; int i; for(i=1; i<=10; i++) { printf("%d\n", i); if(i==3) goto LOOP; //是不是少了一个判断呢? //在这里使用goto语句 } LOOP: printf("结束for循环了...."); //请选择合适位置添加标识符 return 0; }
#include <stdio.h>int main(){ int sum = 0; int i; for(i=1; i<=10; i++) { printf("%d\n", i); if(i==3) goto LOOP; //是不是少了一个判断呢? //在这里使用goto语句 } LOOP: printf("结束for循环了...."); //请选择合适位置添加标识符 return 0; }
2018-11-06
举报