问答详情
源自:4-3 分支结构之多重if-else语句

帮忙看看哪里错了


#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(seore >= 10000)

    {

        printf("钻石玩家");

    }

    else if(seore>=5000)

    {

        printf("白金玩家");    

    }

    else if(seore>=1000)

    {

        printf("青铜玩家");     

    }

    else

    {

        printf("普通玩家");    

    }

    return 0;

}


提问者:慕容6533398 2019-11-01 10:58

个回答

  • 慕九州2060503
    2019-11-16 22:16:21

    hhhhhh好可爱

  • qq_慕码人6116322
    2019-11-04 00:31:47

    常量名打错了是  score  不是seore


  • qq_慕工程4338626
    2019-11-01 14:01:51

    条件少了