首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

计算指定年度里月份中的天数

2012-09-11 
计算指定年份里月份中的天数代码:?public void setDate(int year, int month, int day) {/** 计算当前月份

计算指定年份里月份中的天数

代码:

?

public void setDate(int year, int month, int day) {/** 计算当前月份的总天数 */switch (month + 1) { // The month is counted from zero.case 1:case 3:case 5:case 7:case 8:case 10:case 12:    days = 31;    break;case 4:case 6:case 9:case 11:    days = 30;    break;default:    if (year % 4 != 0)days = 28;    else if (year % 100 != 0)days = 29;    else if (year % 400 != 0)days = 28;    elsedays = 29;}    }

?

?

热点排行