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

新手求助中

为什么这样子是错的呢????????

 #include<stido.h>

int main()

 {

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

     //补全一下代码

    if (year%4!=0)

    {

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

    }

    else

     {

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

        }

                return 0;

 }

提问者:wesdxc 2015-11-15 12:45

个回答

  • 薇薇一笑0
    2015-11-17 14:13:56
    已采纳

     #include<stido.h>换成 #include<stadio.h>

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

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

  • 一飞同学
    2016-01-11 10:16:39

        if (year%4!=0)    还有这个地方    应该是== 吧   = 是赋值吧

  • 年轻的程序猿
    2015-12-25 20:32:45

    为什么要加"%s\n", 不写这个也能输出今年是平年耶