判断奇偶数

Posted xienb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断奇偶数相关的知识,希望对你有一定的参考价值。

       //流行的"程序员"
        public static bool IsOdd(int n)
        {
            while (true)
            {
                switch (n)
                {
                    case 1: return true;
                    case 0: return false;
                }
                n -= 2;
            }
        }

        // 中规中矩的程序员 
        public static bool IsOdd(int n)
        {
            return (n % 2 == 1) ? true : false;
        }

        // 有经验的C#程序员 
        public static bool IsOdd(int n)
        {
            return Convert.ToBoolean(n % 2);
        }

        // 汇编程序员 
        public static bool IsOdd(int n)
        {
            return Convert.ToBoolean(n & 1);
        }

 

以上是关于判断奇偶数的主要内容,如果未能解决你的问题,请参考以下文章

位运算:判断奇偶数

奇偶数判断

判断奇数偶数的C++语言程序

java怎么判断一个数是奇数还是偶数

0028-判断奇偶

js 如何设置奇数行和偶数行的背景颜色?