/*
* Copyright (c) 2012, 烟台大学计算机学院
* All rights reserved.
* 作 者:赵洋
* 完成日期:2012 年 10 月 245日
* 版 本 号:v1.0
* 输入描述:本月有几天
* 问题描述:输入年份、月份,即可求得本月一共多少天
* 程序输出:本月一共多少天
* 问题分析:先判断是否为闰年,然后根据所输入的月份进行输出
* 算法设计:
*/
#include<iostream>
using namespace std;
int main()
{int year,month,day;
cout<<"Please enter year,month:";
cin>>year>>month;
switch(month)
{case 1:day=31;break;
case 2:
if((year%4==0 && year%100!=0) || year%400==0)
day=29;
else
day=28;break;
case 3:day=31;break;
case 4:day=30;break;
case 5:day=31;break;
case 6:day=30;break;
case 7:day=31;break;
case 8:day=31;break;
case 9:day=30;break;
case 10:day=31;break;
case 11:day=30;break;
case 12:day=31;break;
}
cout<<"本月有"<<day<<"天"<<endl;
return 0;
}
运行结果: