本月有几天

来源:互联网 发布:能听着背单词的软件 编辑:程序博客网 时间:2024/06/10 14:27

/*

 *烟台大学计算机与控制工程学院

 *all rights reserved.

 *文件名称:test.cpp

 *作        者:高玉杰

 *完成日期:2016年3月25日

*/


#include <iostream>



using namespace std;


int main()
{
    int year,month;
    int t=0;
    cin>>year>>month;
    if((year%4==0&&year%100!=0)||year%400==0)
   t=1;
    if(t==0)
    {
       if(month==1||month==3||month==5||month==7||month==8||month==10||month==12)
         cout<<"31"<<endl;
       if(month==4||month==6||month==9||month==11)
         cout<<"30"<<endl;
       if(month==2)
         cout<<"28"<<endl;
    }
     if(t==1)
     {
         if(month==1||month==3||month==5||month==7||month==8||month==10||month==12)
           cout<<"31"<<endl;
         if(month==4||month==6||month==9||month==11)
           cout<<"30"<<endl;
         if(month==2)
           cout<<"29"<<endl;
     }


    return 0;
}

0 0
原创粉丝点击