From 19d013941d94f40dfa93f88f7a519ece9cafa9f6 Mon Sep 17 00:00:00 2001 From: ak643du Date: Tue, 5 Mar 2024 10:33:53 +0100 Subject: [PATCH] Initialization --- cv3/program.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cv3/program.c b/cv3/program.c index 685a49f..abc99e5 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -10,7 +10,7 @@ int main() { int length = 0; double result = 0.0; - while (count < SIZE && scanf("%lf", &input) == 1) { + while (count < SIZE && scanf("%lf", &input) == 1) { coefs[count] = input; count++; } @@ -26,4 +26,4 @@ int main() { printf("Vysledok je: %.2lf\n", result); return 0; -} \ No newline at end of file +}