第3周项目2-本月有几天?

时间:2022-03-11 08:05:03
/*Copyright (c) 2016, 烟台大学计算机学院  
*All rights reserved.  
*文件名称:c3weeks.cpp  
*作者:张天择 
*完成日期:2016年 3月17日  
*版本号:vc++6.0  
*/

编程序,输入年份和月份,输出本月有多少天。合理选择分支语句完成设计任务。 

#include<iostream>  
using namespace std;  
int main()  
{  
    int m[13]= {0,31,28,31,30,31,30,31,31,30,31,30,31};  
    int year,month;  
    cin>>year>>month;  
    if(year%4==0&&year%100!=0 || year%400==0)  
    {  
        m[2]=29;  
        cout<<m[month]<<endl;  
    }  
    else  
        cout<<m[month]<<endl;  
    return 0;  
}  

第3周项目2-本月有几天?