4-12 判断奇偶性

2017-04-19  本文已影响0人  Muzi_Jin

Attention: 如果喜欢我写的文章,欢迎来我的github主页给star
Githubgithub.com/MuziJin

本题要求实现判断给定整数奇偶性的函数。

函数接口定义:

int even( int n );

其中n是用户传入的整型参数。当n为偶数时,函数返回1n为奇数时返回0。注意:0是偶数。

裁判测试程序样例:

#include <stdio.h>

int even( int n );

int main()
{    
    int n;

    scanf("%d", &n);
    if (even(n))
        printf("%d is even.\n", n);
    else
        printf("%d is odd.\n", n);

    return 0;
}
/* 你的代码将被嵌在这里 */

输入样例1

-6

输出样例1

-6 is even.

输入样例2

5

输出样例2

5 is odd.

Code

#include<math.h>

int even( int n )
{
    char flag = 0;
    
    if( abs(n)%2 == 0)
        flag = 1;
    
    return flag;
}

转载请注明出处:github.com/MuziJin

上一篇下一篇

猜你喜欢

热点阅读