Initialization

This commit is contained in:
Kozar 2024-03-07 12:41:52 +01:00
parent d871b55947
commit 5b6b36cfb7

View File

@ -13,8 +13,9 @@ int main() {
while (count < SIZE) { while (count < SIZE) {
if (scanf("%lf", &input) != 1 && input != '\n') { if (scanf("%lf", &input) != 1 && input != '\n') {
break; return 0;
} }
coefs[count] = input; coefs[count] = input;
count++; count++;
} }