This commit is contained in:
Andrii Hermaniuk 2022-03-31 16:13:04 +02:00
parent fe243c7092
commit dc326bb829

View File

@ -30,7 +30,7 @@ int main(){
int d1,d2,d3;
int res=sscanf(start,"%d %d %d",&d1,&d2,&d3);
if(res!=3){
if(res!=3||d1==0||d2==0||d3==0){
printf("Neplatny datum.\n");
while((*start)!='\n')start++;
start++;