摘要: #import #include #include // “自定义的”bool leapYear(int year);bool leapYear(int year){ bool leap = false; //方便以后修改 if((year % 4 == 0 && year % 100 != 0)||(year % 400 == 0)) { leap = true; } return leap;}int maxCommonDiv(int num1,int num2);int maxCommonDiv(int num1,int n... 阅读全文
posted @ 2013-12-23 14:14 forrHuen 阅读(305) 评论(0) 推荐(0)