您的位置:首页 > 其它

本月有几天

2016-03-28 21:31 218 查看
/*

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

 *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;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: