Aktualizovat „du4/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-04-03 00:29:44 +00:00
parent 0a712fe1d7
commit ff3b09145b

View File

@ -61,6 +61,9 @@ int check(char *str){
if(str[i]=='='){
flag=1;
}
if((str[i]>='a'&&str[i]<='z')||(str[i]>='A'&&str[i]<='Z')){
return 0;
}
}
return flag==1?1:0;
}