第八周项目六--本月天数

来源:互联网 发布:淘宝特惠囤 编辑:程序博客网 时间:2024/05/17 23:15
#include <iostream>using namespace std;int main(){    int y,m;    cout<<"请输入年 月"<<endl;    cin>>y>>m;    switch(m)    {    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(y%4==0&&y%100==0||y%400==0)            cout<<"本月29天"<<endl;         else            cout<<"本月28天"<<endl;    }    return 0;}

总结:这个补习,记录一下,试了没截图,就不上图了,继续继续

0 0
原创粉丝点击