问答详情
源自:4-2 分支结构之简单if-else语句

求各位大佬解答一下 哪里错误

#include <stdio.h>
https://www.imooc.com/code/5199#editor-tabs-cint main()
{
    int year = 2014; //今年是2014年
    //补全一下代码
    if((year%4==0$$year%100!==0)||year%400==0)
{
    printf("%s\n","今年是闰年");   
}   
 else  
{
    printf("%s\n","今年是平年");   
}   
    return 0;
}

提问者:_梓豪啊_ 2018-10-02 13:49

个回答

  • LeeSin_King123
    2018-10-02 15:22:27

    &&你打成了$$

  • LeeSin_King123
    2018-10-02 15:12:12

    已经知道2014年不是世纪年,不用除400那个吧

  • LeeSin_King123
    2018-10-02 15:10:53

    #include <stdio.h>

    int main() 

    {

        int year = 2014; //今年是2014年

    if(year%4 == 0)    //补全一下代码

    {    

        printf("%s\n", "今年是闰年");    

    }    

    else    

    {    

        printf("%s\n", "今年是平年");

    }    

        return 0;

    }