闰年这一节是不是有问题?

来源:4-2 分支结构之简单if-else语句

边防连

2017-09-03 10:23

#include <stdio.h>
int main() 
{
    int year = 2014; //今年是2014年
    //补全一下代码
    if(=)
    {
        printf("%s\n",今年是闰年);
    }
    else
    {
        printf("%s\n",今年是平年);
    }
    return 0;
}

试了很多次,怎么提交都是正确的提交之后就是类似与这样

<pre>hello.c: In function 'main': hello.c:6:8: error: expected expression before '=' token if(=) ^ hello.c:8:9: error: stray '\344' in program printf("%s\n",今年是闰年); ^ hello.c:8:9: error: stray '\273' in program hello.c:8:9: error: stray '\212' in program hello.c:8:9: error: stray '\345' in program hello.c:8:9: error: stray '\271' in program hello.c:8:9: error: stray '\264' in program hello.c:8:9: error: stray '\346' in program hello.c:8:9: error: stray '\230' in program hello.c:8:9: error: stray '\257' in program hello.c:8:9: error: stray '\351' in program hello.c:8:9: error: stray '\227' in program hello.c:8:9: error: stray '\260' in program hello.c:8:9: error: stray '\345' in program hello.c:8:9: error: stray '\271' in program hello.c:8:9: error: stray '\264' in program hello.c:12:9: error: stray '\344' in program printf("%s\n",今年是平年); ^ hello.c:12:9: error: stray '\273' in program hello.c:12:9: error: stray '\212' in program hello.c:12:9: error: stray '\345' in program

 一部分

怎么回事?

写回答 关注

2回答

  • qq_A丶小茌网络_0
    2017-09-03 15:33:23

    6行应该是 if(year%4==0)

    边防连

    上述原文提交,还是正确

    2017-09-03 16:00:08

    共 1 条回复 >

  • hourouer
    2017-09-03 14:03:13

    第6行应该是 if(year%4==0)

    边防连

    明白,我故意删掉的,提交之后还是显示正确,

    2017-09-03 15:58:55

    共 1 条回复 >

C语言入门

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

926021 学习 · 20793 问题

查看课程

相似问题