Initialization
This commit is contained in:
parent
03b16331e0
commit
c3e03f53cc
@ -21,12 +21,14 @@ int main() {
|
|||||||
length = count;
|
length = count;
|
||||||
|
|
||||||
for (int y = 0; y < length; y++ ){
|
for (int y = 0; y < length; y++ ){
|
||||||
if (isdigit(coefs[y]) == 0){
|
int b = coefs[y]
|
||||||
printf("Nepodarilo sa nacitat polynom na %d mieste.", y);
|
|
||||||
break;
|
if (isdigit(b) == 0){
|
||||||
|
printf("Nepodarilo sa nacitat polynom na %d mieste.", y);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user