美文网首页
4-12 判断奇偶性

4-12 判断奇偶性

作者: Muzi_Jin | 来源:发表于2017-04-19 20:15 被阅读0次

    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

    相关文章

      网友评论

          本文标题:4-12 判断奇偶性

          本文链接:https://www.haomeiwen.com/subject/whihzttx.html