-
Notifications
You must be signed in to change notification settings - Fork 0
/
calender.cpp
163 lines (143 loc) · 2.51 KB
/
calender.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#include "pthread.h"
#include "iostream"
#include "stdio.h"
#include "stdlib.h"
#include "unistd.h"
#include "bits/stdc++.h"
#include "ctime"
#include "cstdlib"
using namespace std;
int dayNumber(int day, int month, int year)
{
static int t[] = { 0, 3, 2, 5, 0, 3, 5, 1,
4, 6, 2, 4 };
year -= month < 3;
return (year + year / 4 - year / 100 +
year / 400 + t[month - 1] + day) % 7;
}
int numberOfDays(int monthNumber, int year)
{
// January
if (monthNumber == 0)
return (31);
// February
if (monthNumber == 1)
{
// If the year is leap then February has
// 29 days
if (year % 400 == 0 ||
(year % 4 == 0 && year % 100 != 0))
return (29);
else
return (28);
}
// March
if (monthNumber == 2)
return (31);
// April
if (monthNumber == 3)
return (30);
// May
if (monthNumber == 4)
return (31);
// June
if (monthNumber == 5)
return (30);
// July
if (monthNumber == 6)
return (31);
// August
if (monthNumber == 7)
return (31);
// September
if (monthNumber == 8)
return (30);
// October
if (monthNumber == 9)
return (31);
// November
if (monthNumber == 10)
return (30);
// December
if (monthNumber == 11)
return (31);
return 0;
}
int main()
{
int year;
cout << "Enter Year:";
cin >> year;
cout << "\e[1;32m\tCalendar for " << year << "\n";
int days;
int current = dayNumber(1, 1, year);
for (int i = 0; i < 12; i++)
{
if(i==0)
{
cout<<"JAN"<<endl;
}
else if(i==1)
{
cout<<"FEB"<<endl;
}
else if(i==2)
{
cout<<"MAR"<<endl;
}
else if(i==3)
{
cout<<"APR"<<endl;
}
else if(i==4)
{
cout<<"MAY"<<endl;
}
else if(i==5)
{
cout<<"JUN"<<endl;
}
else if(i==6)
{
cout<<"JUL"<<endl;
}
else if(i==7)
{
cout<<"AUG"<<endl;
}
else if(i==8)
{
cout<<"SEP"<<endl;
}
else if(i==9)
{
cout<<"OCT"<<endl;
}
else if(i==10)
{
cout<<"NOV"<<endl;
}
else if(i==11)
{
cout<<"DEC"<<endl;
}
days = numberOfDays(i, year);
cout << "\e[1;32m Sun Mon Tue Wed Thu Fri Sat\n";
int k;
for (k = 0; k < current; k++)
cout << " ";
for (int j = 1; j <= days; j++)
{
printf("%4d", j);
if (++k > 6)
{
k = 0;
cout << "\n";
}
}
if (k)
cout << "\n";
current = k;
}
return 0;
}