weixin_慕容1541980
2019-04-25 16:39
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score >=10000)
{
printf("%s\n,钻石玩家");
}
else if (score>=5000||score<10000)
{
printf("%s\n,白金玩家");
}
else if(score>=1000||score<5000)
{
printf("%s\n,青铜玩家");
}
else
{
printf("%s\n,普通玩家");
}
return 0;
}
%s是指字符串,/n是换行符
%s是输出格式符,输出的是字符串,“钻石玩家”“普通玩家”这些都是字符串;\n是换行
好像%s 是输出语句,\n是输出字母啥的吧,前面翻翻有的
C语言入门
926020 学习 · 20793 问题
相似问题