-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2.2.cpp
28 lines (26 loc) · 911 Bytes
/
2.2.cpp
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
#include <iostream>
#include <iomanip>
using namespace std;
typedef enum {SUN,MON,TUE,WED,THU,FRI,SAT} WEEKDAY;
int main(int argc, char const *argv[])
{
const WEEKDAY day_1 = FRI;
cout << "Calendar 2016-01"<<endl;
cout << "--------------------------"<<endl;
cout << "Su Mo Tu We Th Fr Sa"<<endl;
cout << "--------------------------"<<endl;
cout << setw(22) << '1';
for (int i = 2; i < 32; ++i)
{
switch((WEEKDAY)((day_1+i-1)%7)){
case SUN : cout << setw(2) << i;break;
case MON : cout << setw(4) << i;break;
case TUE : cout << setw(4) << i;break;
case WED : cout << setw(4) << i;break;
case THU : cout << setw(4) << i;break;
case FRI : cout << setw(4) << i;break;
case SAT : cout << setw(4) << i <<endl;break;
}
}
return 0;
}