判断奇偶数
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); }
以上是关于判断奇偶数的主要内容,如果未能解决你的问题,请参考以下文章