Aktualizovat „du4/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-04-03 00:30:36 +00:00
parent ff3b09145b
commit 16dd2264e8

View File

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