Initialization

This commit is contained in:
Kozar 2024-03-05 12:01:19 +01:00
parent dfa083a309
commit 09aedc967c

View File

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