这里的%s是怎么用的?

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

leidl

2017-07-23 12:35

#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

    {

        printf("%s\n","普通玩家");    

    }

    return 0;

}


写回答 关注

3回答

  • 慕工程5179016
    2017-07-23 13:20:20
    已采纳

    因为"白金玩家"是一个字符串 所以打印时要用%s

    leidl

    非常感谢!

    2017-07-23 16:23:45

    共 1 条回复 >

  • 慕侠3645497
    2017-07-24 14:27:21

    %s在输出字符串时使用

    \n是换行符


  • 慕就
    2017-07-23 13:57:06

    要输出字符串,所以用%s

C语言入门

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

926041 学习 · 20793 问题

查看课程

相似问题