2009年3月26日
摘要: // 现代流行的"程序员"public static bool IsOdd(int n) ...{ while (true) ...{ switch (n) ...{ case 1: return true; case 0: return false; } n -= 2; }} ... 阅读全文
posted @ 2009-03-26 17:55 钱途无梁 阅读(1470) 评论(0) 推荐(0) 编辑