第5章第3讲常见编译错误与调试

Posted 该☆隐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第5章第3讲常见编译错误与调试相关的知识,希望对你有一定的参考价值。


#include "stdio.h"
main()
{

    int n;
    scanf("%d",&n);
    if(n%2=0)            //if(n%2==0)
         printf("该数是偶数!\\n");
    else
         printf("该数是奇数!\\n");

}


#include "stdio.h"
main()
{

    int x,y;
    scanf("%d",&x);
    if(x<0)
       y=0;
    else if(x<10) 
       y=2+x;
    else (x<20)      //  else if(x<20)
       y=3*x;
    else
       y=x;
    printf("%d\\n",y);

}


#include "stdio.h"
main()
{

    int n;
    scanf("%d",&n);
    if(n%2==0)
         printf("该数是偶数!\\n");
    else
         printf("该数是奇数!\\n");

}

 

以上是关于第5章第3讲常见编译错误与调试的主要内容,如果未能解决你的问题,请参考以下文章

第1章第2讲常见编译错误与调试

第4章第4讲常见编译错误与调试

第3章第1讲算法与流程图

第4章第3讲字符输入与输出函数

第2章第2讲运算符与表达式

第5章第1讲条件判断表达式