aaa
This commit is contained in:
parent
0be635d34b
commit
2d57a9050b
16
a1/program.c
16
a1/program.c
@ -7,19 +7,29 @@
|
|||||||
int main(){
|
int main(){
|
||||||
char Dnes_Datum[300];
|
char Dnes_Datum[300];
|
||||||
int ch=getchar(),counter=0;
|
int ch=getchar(),counter=0;
|
||||||
for(int idx=0;ch!=EOF;idx++){
|
for(id=0;ch!=EOF;id++){
|
||||||
if(ch=='.'){
|
if(ch=='.'){
|
||||||
ch=' ';
|
ch=' ';
|
||||||
}
|
}
|
||||||
Dnes_Datum[idx]=ch;
|
Dnes_Datum[id]=ch;
|
||||||
if(ch=='\n'){
|
if(ch=='\n'){
|
||||||
counter++;
|
counter++;
|
||||||
}
|
}
|
||||||
ch=getchar();
|
ch=getchar();
|
||||||
if(Dnes_Datum[idx]=='\n'&&ch=='\n'){
|
if(Dnes_Datum[id]=='\n'&&ch=='\n'){
|
||||||
break;
|
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;
|
char *start=Dnes_Datum, *end=NULL;
|
||||||
time_t t=time(NULL);
|
time_t t=time(NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user