2、获得博士学位的年月日。提交答案的格式是:yyyy-mm-dd,例如:1980-03-21请严格按照格式,通过浏览器提交答案。注意:只提交这个日期,不要写其它附加内容,比如:说明性的文字。分析:这实际就是“三天打鱼、两天晒网问题”。程序实现:(java写的)[java] package Forth; public class DateOfNdays { /* * 高斯日记(给定日期,算出X天后的日期) */ /* * 是否是闰年 */ boolean IsleapYear(int year){
3、 return (year % 400 == 0
4、
5、 year % 4 == 0 && year % 100 != 0); } /* * 获得某年某月的最大天数 */ int GetMaxDay(int year,int month,int day){ switch(month){ case 1: case 3: case 5: case 7: case 8:
6、 case 10: case 12: return 31; case 4: case 6: case 9: case 11: return 30; case 2: return (IsleapYear(year)?29:28); default: return -1; }