-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTime_Conversion.c
108 lines (87 loc) · 2.12 KB
/
Time_Conversion.c
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
#include <assert.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* readline();
/*
* Complete the timeConversion function below.
*/
/*
* Please either make the string static or allocate on the heap. For example,
* static char str[] = "hello world";
* return str;
*
* OR
*
* char* str = "hello world";
* return str;
*
*/
char* timeConversion(char* s) {
/*
* Write your code here.
*/
if(s[8] == 'A' && s[0] == '1' && s[1] == '2'){
s[0]--;
s[1]-=2;
}
else if(s[8] == 'P'){
switch(s[0]){
case '0':
if(s[1] > '0' && s[1] < '8'){
s[0]++;
s[1] += 2;
}
else if(s[1] == '8' || s[1] == '9'){
s[0] += 2;
s[1] -= 8;
}
break;
case '1':
if(s[1] == '1'){
s[0]++;
s[1] += 2;
}
else if(s[1] == '0'){
s[1] += 2;
s[0]++;
}
break;
}
}
s[8] = '\0';
return s;
}
int main()
{
FILE* fptr = fopen(getenv("OUTPUT_PATH"), "w");
char* s = readline();
char* result = timeConversion(s);
fprintf(fptr, "%s\n", result);
fclose(fptr);
return 0;
}
char* readline() {
size_t alloc_length = 1024;
size_t data_length = 0;
char* data = malloc(alloc_length);
while (true) {
char* cursor = data + data_length;
char* line = fgets(cursor, alloc_length - data_length, stdin);
if (!line) { break; }
data_length += strlen(cursor);
if (data_length < alloc_length - 1 || data[data_length - 1] == '\n') { break; }
size_t new_length = alloc_length << 1;
data = realloc(data, new_length);
if (!data) { break; }
alloc_length = new_length;
}
if (data[data_length - 1] == '\n') {
data[data_length - 1] = '\0';
}
data = realloc(data, data_length);
return data;
}