qq_大叔叔_0
2017-05-27 12:01
int sum = 0;
int i;
for(i=1; i<=10; i++)
{
printf("%d\n", i);
MOTO:if(i==3) //是不是少了一个判断呢?
//在这里使用goto语句
}
goto MOTO printf("结束for循环了...."); //请选择合适位置添加标识符
return 0;
程序应该改为:
if(i == 3)
{
goto MOTO;
}
MOTO:printf("结束for循环了");
return 0;
C语言入门
926027 学习 · 20793 问题
相似问题