Initialization

This commit is contained in:
Kozar 2024-03-05 12:04:20 +01:00
parent c0a94b5b63
commit d871b55947

View File

@ -13,8 +13,7 @@ int main() {
while (count < SIZE) { while (count < SIZE) {
if (scanf("%lf", &input) != 1 && input != '\n') { if (scanf("%lf", &input) != 1 && input != '\n') {
printf("Chyba pri nacitani hodnoty %lf.\n", input); break;
return 1;
} }
coefs[count] = input; coefs[count] = input;
count++; count++;