码迷,mamicode.com
首页 > 其他好文 > 详细

判断奇偶数

时间:2019-01-23 12:32:42      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:class   boolean   public   ati   iso   编程   ase   汇编   bsp   

       //流行的"程序员"
        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);
        }

 

判断奇偶数

标签:class   boolean   public   ati   iso   编程   ase   汇编   bsp   

原文地址:https://www.cnblogs.com/xienb/p/10308122.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!