This commit is contained in:
Andrii Hermaniuk 2022-03-31 16:14:07 +02:00
parent dc326bb829
commit c9af412810

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||d1==0||d2==0||d3==0){
if(res!=3||d1<=0||d2<=0||d3<=0){
printf("Neplatny datum.\n");
while((*start)!='\n')start++;
start++;