问答详情
源自:4-4 分支结构之嵌套if-else语句

有人可以帮我看看嘛?

hello.c: In function 'main':
hello.c:11:68: error: stray '\357' in program
                  printf("%s\n","恭喜您获得优秀员工奖!");
                                                                    ^
hello.c:11:69: error: stray '\274' in program
                  printf("%s\n","恭喜您获得优秀员工奖!");
                                                                     ^
hello.c:11:70: error: stray '\233' in program
                  printf("%s\n","恭喜您获得优秀员工奖!");
                                                                      ^
hello.c:13:9: error: expected ';' before '}' token
         }
         ^
hello.c:16:31: warning: missing terminating " character
                 printf("%s\n","很遗憾,期望你再接再厉);
                               ^
hello.c:16:31: error: missing terminating " character
                 printf("%s\n","很遗憾,期望你再接再厉);
                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
hello.c:17:9: error: expected expression before '}' token
         }
         ^
hello.c:17:9: error: expected ';' before '}' token


提问者:qq_慕田峪0391870 2019-03-12 18:25

个回答

  • 慕娘4121876
    2019-03-18 16:26:14

    #include <stdio.h>
    int main()
    {
        int sale=120; //销售业绩为120万
        int year=1; //刚刚进入公司1年
        //完善代码
        if(sale>100)
        {
           
            if(year>=2){
               
                printf("优秀员工");
            }else{
               
                printf("很遗憾,期望你再接再厉 ");
            }
        }else
        {
           printf("很遗憾,期望你再接再厉 ");
        }
       

  • super彬
    2019-03-15 10:24:00

    #include <stdio.h>

    int main() 

    {

        int sale=120; //销售业绩为120万

        int year=1; //刚刚进入公司1年

        //完善代码

        if(sale > 100)

        {

            if(year >= 2)

            {

                printf("恭喜,获奖!!!!!\n");

            }

            else

            {

                printf("很遗憾,期望你再接再厉1\n");

            }

        }

        else

        {

            printf("很遗憾,期望你再接再厉2\n");

        }

        

        

        

        return 0;

    }


  • 慕桂英5086107
    2019-03-12 20:15:40

    1. 要输入英文符号 ; 而不是中文符号;。应该是员工奖后面的弄错了。

    2. {}花括号内的语句要用;结尾。

    3. 很遗憾那句话的“”这个符号漏了一边的。

      我大概是看到的就这些。