不可以直接用if语句直接判断两个吗?

来源:4-4 分支结构之嵌套if-else语句

GY9661350

2020-02-25 04:00

if(sale>100,year>=2)

{

printf("%s\n","巴拉巴拉")

}

else

printf(“%s\n”,"巴拉巴拉")

 这样写不行吗?我这样写系统出错了,求大神赐教

写回答 关注

4回答

  • 靠一手自学成才
    2020-02-28 14:49:07

    if(sale>100 && year>=2)

    {

    printf("%s\n","恭喜");

    }

    else

    printf(“%s\n","很遗憾");


  • 慕田峪6586636
    2020-02-25 20:52:30

    你的printf输出语句,后面都少了 ;

  • 慕田峪6586636
    2020-02-25 20:52:26

    你的printf输出语句,后面都少了 ;

  • hhhhhhhhhh好多人无聊打hh
    2020-02-25 14:42:09

    可以,

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

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

        //完善代码

         

        if(sale>100,year>=2)

        {

            printf("%s\n","vvll");

        }

        else

        {

            printf("%s\n","ssss");

        }

    或者

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

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

        //完善代码

         

        if(sale>100&&year>=2)

        {

            printf("%s\n","vvll");

        }

        else

        {

            printf("%s\n","ssss");

        }

    你,,,,打字符要英文下打

    中文英文的字符是不一样的。

    (搞得我还以为是我逻辑错了)

    hhhhhh...

    printf()后面少了;

    2020-02-25 14:43:09

    共 1 条回复 >

C语言入门

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

926209 学习 · 20797 问题

查看课程

相似问题