Initialization

This commit is contained in:
Kozar 2024-03-04 14:45:24 +01:00
parent 9256a5504a
commit fa26c73e71

View File

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