This commit is contained in:
Andrii Hermaniuk 2022-03-27 19:35:59 +02:00
parent 0be635d34b
commit 2d57a9050b

View File

@ -7,19 +7,29 @@
int main(){
char Dnes_Datum[300];
int ch=getchar(),counter=0;
for(int idx=0;ch!=EOF;idx++){
for(id=0;ch!=EOF;id++){
if(ch=='.'){
ch=' ';
}
Dnes_Datum[idx]=ch;
Dnes_Datum[id]=ch;
if(ch=='\n'){
counter++;
}
ch=getchar();
if(Dnes_Datum[idx]=='\n'&&ch=='\n'){
if(Dnes_Datum[id]=='\n'&&ch=='\n'){
break;
}
}
Dnes_datum[id]='\0';
for(int i=0;i<strlen(Dnes_datum);i++){
if((Dnes_Datum[i]>='0'&&Dnes_Datum[i]<='9')||Dnes_Datum[i]==' ');
else {
printf("Neplatny datum.\n");
return EXIT_SUCCESS;
}
}
char *start=Dnes_Datum, *end=NULL;
time_t t=time(NULL);