为了账号安全,请及时绑定邮箱和手机立即绑定

#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循环了....

#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;    

}


正在回答

1 回答

还是别用goto语句吧。。每次用goto语句总是有种罪恶感!!!

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

#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循环了....

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信