第三周实践项目二————本月有几天

/*copyright(c)2016.烟台大学计算机学院 
 * All rights reserved, 
 * 文件名称:text.Cpp 
 * 作者:吴敬超 
 * 完成日期:2016年3月15日 
 * 版本号:vc++6.0 
 * 
 * 问题描述: 
 * 输入描述: 
 * 程序输出: 
 */ 
#include<iostream>
using namespace std;
int main()
{
	int day,month,year;
	cin>>year>>month;
	switch(month)
	{
		case 1:
		case 3:
		case 5:
		case 7:
		case 8:
		case 10:
		case 12:cout<<"31"<<endl;break;
		case 4:
		case 6:
		case 9:
		case 11:cout<<"30"<<endl;break;
		case 2:if((year%4==0&&year%100!=0)||(year%400==0))
			   {
				   cout<<"29"<<endl;
			   }
			else
			{
				cout<<"28"<<endl;
			}break;
		default:cout<<"您输入的数据有误"<<endl;
	}
	return 0;
}

运行结果:

第三周实践项目二————本月有几天_第1张图片

你可能感兴趣的:(第三周实践项目二————本月有几天)