为什么示范里面 printf("%s\n","买玩具“),但是题目中就是直接printf("白金玩家"),什么时候要加%s?

来源:4-3 分支结构之多重if-else语句

weixin_慕村1278308

2021-09-11 17:54

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score>=10000)

    {

        printf("钻石玩家");

    }

    else if(score>=5000&&score<10000)

    {

        printf("白金玩家");    

    }

    else if(score<5000&&score>=1000)

    {

        printf("青铜玩家");     

    }

    else

    {

        printf("普通玩家");    

    }

    return 0;

}


写回答 关注

2回答

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926209 学习 · 20797 问题

查看课程

相似问题