课程
/后端开发
/C
/C语言入门
求问这个代码哪里错了?
2019-07-08
源自:C语言入门 4-3
正在回答
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score>=10000)
printf("钻石玩家");
}
else if(score>=5000)
printf("白金玩家");
else if(score>=1000)
printf("青铜玩家");
else
printf("普通玩家");
return 0;
if(score >= 10000)
printf("%s\n","钻石玩家");
else if(10000 >= score)
printf("%s\n","白金玩家");
else if(5000 >= score)
printf("%s\n","青铜玩家");
printf("%s\n","普通玩家");
else if(score>=5000&&score<10000) //你少了“&&”两个符号
else if(score>=1000&&score<5000) //你少了“&&”两个符号
else if(score<1000)
else if(score>=5000&&score<10000)
else if(score>=1000&&score<5000)
波波啊啊啊
慕的地21332321 回复 波波啊啊啊
你这个可能是输入法问题,你可以试试我的
if( score >= 10000)
else if( score >= 5000 )
else if( score >= 1000 )
想帮你,但是懒得输入一遍代码
举报
C语言入门视频教程,带你进入编程世界的必修课-C语言
4 回答和答案一样,但运行失败
4 回答求大神解答为什么会运行失败呀??
1 回答代码验证过了,但运行结果是错的,怎么回事,求大神解答
2 回答这样怎么也是运行成功呢?求大神解答
2 回答求大神解答,下标的含义是什么,百度了但是还没懂