Initialization

This commit is contained in:
Kozar 2024-03-04 16:54:42 +01:00
parent e616e463e2
commit 03b16331e0

View File

@ -21,10 +21,13 @@ int main() {
length = count; length = count;
for (int y = 0; y < length; y++ ){ for (int y = 0; y < length; y++ ){
if ( !isdigit(coefs[y])){ if (isdigit(coefs[y]) == 0){
printf("Nepodarilo sa nacitat polynom na %d mieste.", y); printf("Nepodarilo sa nacitat polynom na %d mieste.", y);
break; break;
} }
else{
continue;
}
} }