Initialization

This commit is contained in:
Kozar 2024-03-05 10:54:05 +01:00
parent dd67962395
commit c0345647f3

View File

@ -10,8 +10,7 @@ int main() {
int length = 0; int length = 0;
double result = 0.0; double result = 0.0;
while (count < SIZE) { while (count < SIZE && scanf("%lf", &input) == 1) {
coefs[count] = input; coefs[count] = input;
count++; count++;
} }