C#基础题(小弟是初学者,请教各位大神,拜谢!)

自定义一个类(TestDate),在类中定义一个方法publicintgetDays(intyear,intmonth),此方法要实现的功能是:判断传递过来的年份和月份,... 自定义一个类(TestDate),在类中定义一个方法public int getDays(int year,int month),此方法要实现的功能是:判断传递过来的年份和月份,返回当月的最大天数。最后测试这个类的方法。 展开
 我来答
hongfei357
2013-01-20 · TA获得超过285个赞
知道小有建树答主
回答量:384
采纳率:100%
帮助的人:211万
展开全部
public int getDays(int year, int month)
{
if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12)
return 31;
else if (month == 4 || month == 6 || month == 9 || month == 11)
return 30;
else if (month == 2)
{
if (LeapYear(year))
return 29;
else
return 28;
}
return 0;
}
bool LeapYear(int year)
{
if ((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0))
return true;
else
return false;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式