-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeeklyCalender.cpp
93 lines (79 loc) · 2.12 KB
/
WeeklyCalender.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
// Weekly Calendar
// https://algospot.com/judge/problem/read/WEEKLYCALENDAR
#include <stdio.h>
#include <string.h>
bool isCurrectWeekday(char * userWeekday, const char * weekday[],
int weekdayOffset);
void createUserWeekdays(int month, int day, int weekdayOffset, int aWeek[]);
int main()
{
int nTestCases = 0;
int month;
int day;
int weekdayOffset;
const char * weekday[] = { "Sunday", "Monday", "Tuesday", "Wednesday",
"Thursday", "Friday", "Saturday" };
char * userWeekday = new char[10];
int * aWeek = new int[7];
scanf("%d", &nTestCases);
while (nTestCases--)
{
// Prompt user for date
scanf("%d %d %s", &month, &day, userWeekday);
// Verify user's week
for (int i = 0; i < 7; i++)
{
if (!memcmp(userWeekday, weekday[i], sizeof(i)))
{
weekdayOffset = i;
}
}
// Create user's weekdays
createUserWeekdays(month, day, weekdayOffset, aWeek);
printf("%d %d %d %d %d %d %d\n", aWeek[0], aWeek[1], aWeek[2], aWeek[3],
aWeek[4], aWeek[5], aWeek[6]);
}
return 0;
}
void createUserWeekdays(int month, int day, int weekdayOffset, int aWeek[])
{
// Get first day
int firstMonthday = day - weekdayOffset;
for (int i = 0; i < 7; i++)
{
aWeek[i] = firstMonthday;
switch (month)
{
case 1:
case 8:
// Month is January or August
if (firstMonthday < 1) aWeek[i] = firstMonthday + 31;
if (firstMonthday > 31) aWeek[i] = firstMonthday - 31;
break;
case 2:
// Month is Febrary
if (firstMonthday < 1) aWeek[i] = firstMonthday + 31;
if (firstMonthday > 28) aWeek[i] = firstMonthday - 28;
break;
case 3:
// Month is March
if (firstMonthday < 1) aWeek[i] = firstMonthday + 28;
if (firstMonthday > 31) aWeek[i] = firstMonthday - 31;
break;
case 5:
case 7:
case 10:
case 12:
// Month is May, July, October or December
if (firstMonthday < 1) aWeek[i] = firstMonthday + 30;
if (firstMonthday > 31) aWeek[i] = firstMonthday - 31;
break;
default:
// Month is April, June, September or November
if (firstMonthday < 1) aWeek[i] = firstMonthday + 31;
if (firstMonthday > 30) aWeek[i] = firstMonthday - 30;
break;
}
firstMonthday++;
}
}