qq_慕姐8098661
2019-09-24 13:10
运行成功 ,输入错误
你这啥问题描述,谁能看懂。。不说整个截图至少有个正常格式代码
loop不能小写 要写成 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 loop; //在这里使用goto语句
}
loop:
printf("结束for循环了...."); //请选择合适位置添加标识符
return 0;
}
C语言入门
926021 学习 · 20793 问题
相似问题