不知道哪里错了 就是运行不成功

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

慕侠5313373

2019-04-17 19:33

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回答

  • Majesty_x
    2019-05-06 00:40:58

    你用了%格式输出,但是你没有为它制定输出对象

    比如printf("%s\n", a) 这个a就是输出对象

    题目中“**玩家”这种直接输出就好,还记得第一课printf ("Hello World!"); 嘛

  • 呆子呆子
    2019-04-18 19:26:12

    #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;

    }


  • 一听后生
    2019-04-17 20:16:56

    #include <stdio.h>
    int main()
    {
        int score = 7200;
        if(score>=10000)//完善一下代码
        {
            printf("钻石玩家");
        }
        else if(score>=5000&&score<10000)
        {
            printf("白金玩家");   
        }
        else if(score>=1000&&score<5000)
        {
            printf("青铜玩家");    
        }
      else
        {
            printf("普通玩家");   
        }
        return 0;
    }

C语言入门

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

926020 学习 · 20793 问题

查看课程

相似问题