Description
已知2007年1月1日为星期一。
设计一函数按照下述格式打印2007年以后(含)某年某月的日历,2007年以前的拒绝打印。
为完成此函数,设计必要的辅助函数可能也是必要的。其中输入为年分和月份。
Input
Output
Sample Input
Sample Output
Calendar 2007-01 --------------------- Su Mo Tu We Th Fr Sa --------------------- 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 ---------------------
几乎要被空格搞疯掉...仔细点耐心点就能做出来
#include<cstdio>
#include <cstring>
#include<algorithm>
#include <iostream>
#include <cmath>
using namespace std;
bool is_leapyear(int a)
{
if((a % 4 ==0 && a % 100 != 0) || a % 400 == 0)
return true;
else