问题标题: 酷町堂:4353

0
0
已解决
胡景波
胡景波
中级光能
中级光能
#include<iostream>
using namespace std;
int main()
{
    int m,n;
    cin>>m>>n;
    if(n==1||n==3||n==5||n==7||n==8||n==10||n==12){
        cout<<"Sun Mon Tue Wed Thu Fri Sat"<<endl;
        cout<<"          1   2   3   4   5"<<endl;
        cout<<"  6   7   8   9  10  11  12"<<endl;
        cout<<" 13  14  15  16  17  18  19"<<endl;
        cout<<" 20  21  22  23  24  25  26"<<endl;
        cout<<" 27  28  29  30  31"<<endl;
    }
    else if(n==4||n==6||n==9||n==11){
        cout<<"Sun Mon Tue Wed Thu Fri Sat"<<endl;
        cout<<"          1   2   3   4   5"<<endl;
        cout<<"  6   7   8   9  10  11  12"<<endl;
        cout<<" 13  14  15  16  17  18  19"<<endl;
        cout<<" 20  21  22  23  24  25  26"<<endl;
        cout<<" 27  28  29  30"<<endl;
    }
    else if(n==2){
         if(m%4==0&&m%100!=0||m%400==0){
            cout<<"Sun Mon Tue Wed Thu Fri Sat"<<endl;
            cout<<"          1   2   3   4   5"<<endl;
            cout<<"  6   7   8   9  10  11  12"<<endl;
            cout<<" 13  14  15  16  17  18  19"<<endl;
            cout<<" 20  21  22  23  24  25  26"<<endl;
            cout<<" 27  28  29"<<endl;
         } 
         else{
            cout<<"Sun Mon Tue Wed Thu Fri Sat"<<endl;
            cout<<"          1   2   3   4   5"<<endl;
            cout<<"  6   7   8   9  10  11  12"<<endl;
            cout<<" 13  14  15  16  17  18  19"<<endl;
            cout<<" 20  21  22  23  24  25  26"<<endl;
            cout<<" 27  28"<<endl;
         }
    }
    return 0;
} 

40分

这道题把我搞崩了

4353   菲菲的月历

题目描述 Description

虽然已经上学好几年,但是菲菲还是想着“下一次放假是什么时候?”之类的问题,因此,菲菲对月历表非常关注,她总是想着看着“什么时候又放假呢?”,这不,才学习信息学不到一个学期的菲菲就想着只要给定年和月,就能打印出当月的月历表。

输入描述 Input Description

输入为一行两个整数,第一个整数是年份year(1900<=year<=2099),第二个整数是月份month(1<=month<=12),中间用单个空格隔开。

输出描述 Output Description

输出为月历表。月历表第一行为星期表头,如下所示:
Sun Mon Tue Wed Thu Fri Sat
其余各行依次是当月各天的日期,从1日开始到31日(30日或28日)。
日期数字应与星期表头右对齐,即各位数与星期表头相应缩写的最后一个字母对齐。日期中间用空格分隔出空白。

样例输入 Sample Input

 

2019 10

样例输出 Sample Output

 

Sun Mon Tue Wed Thu Fri Sat
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31


0
0
0
我要回答