课程
/后端开发
/C
/C语言入门
需要编一个程序, 要使它运行的时候输入分数会弹出等级
2016-10-05
源自:C语言入门 4-3
正在回答
else没有判断功能,你在else 后加括号也没用
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score>=10000)
printf("%s\n","钻石玩家");
}
else if(score>=5000)
printf("%s\n","白金玩家");
else if(score>=1000)
printf("%s\n","青铜玩家");
else(score<1000)
printf("%s\n","普通玩家");
return 0;
#include<stdio.h>
int main ( )
int score= ; //自己输入分数……
if(score……)
printf("等级……");
else if (score……)
…………
else
return 0
LOG5NM4107811
举报
C语言入门视频教程,带你进入编程世界的必修课-C语言
1 回答if-else语句
3 回答if -else 语句
2 回答If-else语句