-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdate_et_heure.c
296 lines (289 loc) · 5.96 KB
/
date_et_heure.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
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
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
char*get_the_date(char*input);
char*get_the_hour(char*input);
char*jour0(char*date0);
char*jour0_bis(char*jour);
char*isole_mois_annee(char*dateO);
int getheure(char*heure0);
int getminute(char*heure0);
int getseconde(char*heure0);
float heure_vers_jour(int heure,int minute,int seconde);;
float get_jour_decimale(int day2,float day1);
char*day_to_chaine(float day);
int testvirgule(char*jour1);
float generer_jour_flottante(char*jour1);
float charToDouble(char*jour1,int long2);
void affiche_date(char*date0);
void convertir_jour_flottante(float jour3);
int main(){
char*input=(char*)malloc(40);
char*date0=(char*)malloc(20);
char*heure0=(char*)malloc(20);
char*jour=(char*)malloc(10);
char*jour1=(char*)malloc(10);
char*resultat=(char*)malloc(40);
char*day4=(char*)malloc(20);
char*tab=(char*)malloc(20);
/// float jour3=0.0;
int heure=0,minute=0,seconde=0;
int day=0,day2=0;
float day1=0.0;
input="23/7/2023 12:00:00";
date0=get_the_date(input);
heure0=get_the_hour(input);
heure=getheure(heure0);
minute=getminute(heure0);
seconde=getseconde(heure0);
jour=jour0(date0);
jour1=jour0_bis(jour);
tab=isole_mois_annee(date0);
day1= heure_vers_jour(heure,minute,seconde);
day2=atoi(jour1);
day=get_jour_decimale(day2,day1);
day4=day_to_chaine(day);
strcat(resultat,day4);
strcat(resultat,tab);
printf("%s",resultat);
/* if(testvirgule(jour1)==0){
jour3=generer_jour_flottante(jour1);
/// printf("On obtient %f jour\n", jour3);
affiche_date(date0);
convertir_jour_flottante(jour3);
}
if(testvirgule(jour1)==1){
printf("On est le %s a 0h0min0s\n",date0);
}
*/
return 0;
}
char*jour0(char*date0){
char*jour=(char*)malloc(10);
int pos_slash=0;
for(int i=0;i<strlen(date0);i++){
if(date0[i]=='/'){
pos_slash=i;
for(int j=0;j<pos_slash;j++){
jour[j]=date0[j];
}
}
}
return jour;
}
char*jour0_bis(char*jour){
char*jour1=(char*)malloc(10);
int pos_slash=0;
for(int i=0;i<strlen(jour);i++){
if(jour[i]=='/'){
pos_slash=i;
for(int j=0;j<pos_slash;j++){
jour1[j]=jour[j];
}
}
}
return jour1;
}
int testvirgule(char*jour1){
for(int i=0;i<strlen(jour1);i++){
if(jour1[i]=='.'){
return 0;
}
}
return 1;
}
float generer_jour_flottante(char*jour1){
int nb=0;
int pos_virg;
int j=0;
int m=0;
float heure1=0.0;
for(int i=0;i<strlen(jour1);i++){
if(jour1[i]=='.'){
pos_virg=i;
j=strlen(jour1)-pos_virg+1;
m=j-2;
for(int k=pos_virg+1;k<strlen(jour1);k++){
nb+=(jour1[k]-48)*pow(10,m);
m--;
}
heure1=nb*pow(10,-j+1);
}
}
return heure1;
}
float charToDouble(char*jour1,int long2){
int nb=0;
float dec=0.0000;
int k=long2-2;
for(int i=1;i<long2;i++){
nb+=(jour1[i]-48)*pow(10,k);
k--;
}
int n=long2-1;
dec=nb*pow(10,-n);
printf("On obtient %f h\n", dec);
return dec;
}
void affiche_date(char*date0){
printf("On est le ");
for(int i=0;i<strlen(date0);i++){
if(date0[i]=='.'){
for(int j=0;strlen(date0);j++){
i++;
if(date0[i]==47){
break;
}
};
}
printf("%c",date0[i]);
}
}
void convertir_jour_flottante(float jour3){
int heure=0,minute=0,seconde=0,dayTosecond=0;
dayTosecond=24*3600*jour3;
if(dayTosecond>60){
seconde=dayTosecond%60;
minute=dayTosecond/60;
}
if(minute>60){
int tmp=minute;
minute=tmp%60;
heure=tmp/60;
}
printf(" a %dh%dmin%ds\n",heure,minute,seconde);
}
char*get_the_date(char*input){
char*date=(char*)malloc(20);
int pos_esp=0;
int index=0;
for(int i=0;i<strlen(input);i++){
if(input[i]==' '){
pos_esp=i;
for(int j=0;j<pos_esp;j++){
date[index]=input[j];
index++;
}
}
}
return date;
}
char*get_the_hour(char*input){
char*heure=(char*)malloc(20);
int pos_esp=0;
int index=0;
for(int i=0;i<strlen(input);i++){
if(input[i]==' '){
pos_esp=i;
for(int j=pos_esp+1;j<strlen(input);j++){
heure[index]=input[j];
index++;
}
}
}
return heure;
}
int getheure(char*heure0){
char*heure=(char*)malloc(3);
int h=0;
int index=0;
int pos1=0;
int pos2=0;
for(int i=0;i<strlen(heure0);i++){
if(heure0[i]==':'){
pos1=i;
for(int j=0;j<pos1;j++){
if(heure0[j]==':'){
pos2=j;
for(int k=0;k<pos2;k++){
heure[index]=heure0[k];
index++;
}
}
}
}
}
h=atoi(heure);
return h;
}
int getminute(char*heure0){
char*minute=(char*)malloc(3);
int m=0;
int index=0;
int pos1=0;
int pos2=0;
for(int i=0;i<strlen(heure0);i++){
if(heure0[i]==':'){
pos1=i;
for(int j=0;j<pos1;j++){
if(heure0[j]==':'){
pos2=j;
for(int k=pos2+1;k<pos1;k++){
minute[index]=heure0[k];
index++;
}
}
}
}
}
m=atoi(minute);
return m;
}
int getseconde(char*heure0){
char*seconde=(char*)malloc(3);
int s=0;
int index=0;
int pos1=0;
for(int i=0;i<strlen(heure0);i++){
if(heure0[i]==':'){
pos1=i;
for(int j=pos1;j<strlen(heure0);j++){
seconde[index]=heure0[j];
index++;
}
}
}
s=atoi(seconde);
return s;
}
float heure_vers_jour(int heure,int minute,int seconde){
float day1=0.0;
float heure1=0.0,heure2=0.0,h=0.0;
heure1=minute/60;
heure2=seconde/3600;
h=heure+heure1+heure2;
day1=h/24;
return day1;
}
float get_jour_decimale(int day2,float day1){
float day=0.0;
day=day2+day1;
return day;
}
char*day_to_chaine(float day){
char*day4=(char*)malloc(8);
sprintf(day4,"%g",day);
return day4;
}
char*isole_mois_annee(char*date0){
char*tab=(char*)malloc(10);
int index=0;
int pos_slash1=0;
int pos_slash2=0;
for(int i=0;i<strlen(date0);i++){
if(date0[i]=='/'){
pos_slash1=i;
for(int j=0;j<pos_slash1;j++){
if(date0[j]=='/'){
pos_slash2=j;
for(int k=pos_slash2;k<strlen(date0);k++){
tab[index]=date0[k];
index++;
}
}
}
}
}
return tab;
}