-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calendar.cpp
298 lines (268 loc) · 7.11 KB
/
Calendar.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
Project No:02
Project Name:Calendar
Team Leader:
C193201 _ Mahmuda Begum
Members:
1.C191219 - Nafija Tabassum Nirjana
2. C193227 _ Noushin Tabassum Zemi
*/
#include<bits/stdc++.h>
using namespace std;
class Calendar_Parent {
public:
int Year;
};
// Sub class inheriting from Base Class(Parent)
class Calendar_Child : public Calendar_Parent {
public:
string d;
string t;
string Event;
};
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;
}
string getMonthName(int monthNumber)
{
string months[] = {"January", "February", "March",
"April", "May", "June",
"July", "August", "September",
"October", "November", "December"
};
return (months[monthNumber]);
}
int numberOfDays (int monthNumber, int year)
{
// January
if (monthNumber == 0)
return (31);
// February
if (monthNumber == 1)
{
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);
}
void Calendar(int year)
{
int days;
int current = dayNumber (1, 1, year);
for (int i = 0; i < 12; i++)
{
days = numberOfDays (i, year);
printf("\n\t\t\t\t\t ------------%s-------------\n",
getMonthName (i).c_str());
printf("\n\t\t\t\t\t Sun Mon Tue Wed Thu Fri Sat\n");
int k;
cout<<"\t\t\t\t\t";
for (k = 0; k < current; k++)
printf(" ");
for (int j = 1; j <= days; j++)
{
printf("%5d", j);
if (++k > 6)
{
k = 0;
printf("\n\t\t\t\t\t");
}
}
if (k)
printf("\n");
current = k;
}
return;
}
void Insert(string d,string t,string Event)
{
try
{
fstream file;
file.open("E:\\Mahmuda\\6thSem\\SD2_Project\\Input.txt", ios::app | ios::out);
if(file)
{
file<<d<<' '<<t<<' '<<Event<<endl;
file.close();
}
else
{
throw 420;
}
}
catch(...)
{
cout<<"\n\t\t\t\t\t Can't access file."<<endl;
}
}
void Remind_Me(string d,string t)
{
int cnt=0,flag=0;
try
{
fstream file;
string word;
string filename ="Input.txt";
file.open(filename.c_str());
if(file)
{
while(file >> word)
{
if(word==d)
cnt++;
else if(word==t)
cnt++;
else if(cnt==2)
{
flag=1;
cout<<"\n\t\t\t\t\t ---*REMINDER*--- : "<<word<<endl;
break;
}
else cnt=0;
}
file.close();
if(flag==0)
{
cout<<"\n\t\t\t\t\t NO REMINDER!!!! \n";
}
}
else
{
throw 420;
}
}
catch(...)
{
cout<<"\n\t\t\t\t\t Can't access file."<<endl;
}
}
void Reminder_list()
{
try
{
ifstream ifs;
string s;
int i=1;
ifs.open("E:\\Mahmuda\\6thSem\\SD2_Project\\Input.txt");
if(ifs)
{
cout<< "\n\t\t\t\t\t\t *| REMINDER LIST |*" <<endl;
while (getline (ifs,s))
{
cout<< "\n\t\t\t\t\t "<<i<<". "<<s <<endl;
i++;
}
ifs.close();
}
else
{
throw 420;
}
}
catch(...)
{
cout<<"\n\t\t\t\t\t Can't access file."<<endl;
}
}
int menu(void)
{
int choice;
do
{
cout<<"\n\n\n";
cout << "\t\t\t ............................" << endl;
cout << "\t\t\t Choose Options:[1/2/3/4/5]" << endl;
cout << "\t\t\t ............................" << endl;
printf("\n\t\t\t\t\t Press 1- to See Calendar\n\t\t\t\t\t Press 2- to Add Remindar\n\t\t\t\t\t Press 3- to Remind Me\n\t\t\t\t\t Press 4- to See Reminder List\n\t\t\t\t\t Press 5- to Exit\n");
printf("\n\t\t\t\t\tYour choice please... ");
scanf("%d",&choice);
if(choice<1||choice>5)
printf("\n\t\t\t\t\tWrong...Choice again...\n");
}
while(choice<1||choice>5);
return (choice);
}
int main()
{
system("color b1");
int choice;
Calendar_Child obj;
cout<<"\n\n\n";
cout << "\n\t\t\t\t\t*-------------------------------*\n";
cout << "\t\t\t\t\t* ----------------------------- *" << endl;
cout << "\t\t\t\t\t* | WELCOME TO THE CALENDAR | *" << endl;
cout << "\t\t\t\t\t* ---------------------------- *" << endl;
cout << "\t\t\t\t\t*-------------------------------*" << endl;
cout << "\t\t\t *Made By : Mahmuda Begum, Nafija Tabassum, Noushin Tabassum*" << endl;
//cout<<"\t\t**************************---------------------***************************\n";
do
{
choice=menu();
switch(choice)
{
case 1:
cout<<"\n\t\t\t\t\t Enter a Year :";
cin>>obj.Year;
printf ("\n\t\t\t\t\t THE CALENDAR OF : %d\n\n", obj.Year);
Calendar(obj.Year);
break;
case 2:
printf("\n\t\t\t\tEnter Date(dd/mm/yyyy) and Time(hh:mm) : "); //format Date(12/12/2007 Time(23:01)
cin>>obj.d>>obj.t;
printf("\n\t\t\t\tEnter an Event for Reminder : ");
cin>>obj.Event;
Insert(obj.d,obj.t,obj.Event);
break;
case 3:
printf("\n\t\t\t\tEnter Date(dd/mm/yyyy) and Time(hh:mm) : "); //format Date(12/12/2007 Time(23:01)
cin>>obj.d>>obj.t;
Remind_Me(obj.d,obj.t);
break;
case 4:
Reminder_list();
break;
case 5:
printf("\n\t\t\t\t\tThank You For Visiting OUR CALENDAR...\n");
break;
}
}
while(choice!=5);
return 0;
}