摘要: 这笑话有些老了,现在写一个C#版的。 判断一个整数是否是奇数: // 现代流行的"程序员"public static bool IsOdd(int n) { while (true) { switch (n) { case 1: return true; case 0: return false; ... 阅读全文
posted @ 2005-06-30 09:51 双鱼座 阅读(3826) 评论(9) 推荐(2) 编辑