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

求求大家帮帮我,

inclube<stdio.h>
int main()
{
    int year =2014
    if(year %4 ==0 && year %100 !=0 ||year %400 ==0)
    {
    printf("今年是闰年");
    }
    else
    {
    printf("今年是平年");
    }
    return 0
    }


提问者:伤口撒点孜 2020-03-31 15:26

个回答

  • 浮华罒
    2020-04-06 17:48:48

    1.   inclube<stdio.h>        include<stdio.h> 

       4.    int year =2014            int year = 2014;

       13.  return 0                       return0;

    刚学 不是很懂-.-?


  • 慕丝0558588
    2020-04-04 21:30:18

    include错了 最后一行return没有分号

  • 慕粉3240771
    2020-04-01 18:00:16

    #include <stdio.h>

    return 0;


  • 伤口撒点孜
    2020-03-31 15:28:17

    应该是空格问题,我这个也过不去