expected '(' before 'else'

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

包小料

2015-03-02 11:33

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

然后错误提示 In function 'main':
error: expected '(' before 'else'

写回答 关注

1回答

  • onemoo
    2015-03-02 11:37:56
    已采纳

    if后面再次跟一个判断的话,要写else if。

    你写成了if else

    包小料

    谢了。

    2015-03-02 11:52:06

    共 2 条回复 >

C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题