From 8a9a37a2a6158bec2294b205ae181ce7d0c92315 Mon Sep 17 00:00:00 2001 From: ak643du Date: Fri, 8 Mar 2024 01:01:04 +0100 Subject: [PATCH] Initialization --- cv3/program.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/cv3/program.c b/cv3/program.c index 34de258..d484c04 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -10,14 +10,18 @@ int main() { int length = 0; double result = 0.0; - while (count < SIZE) { + if (scanf("%lf", &input) == 1) { + x = input; + count++; + } + + while (count < SIZE) { if (scanf("%lf", &input) != 1) { if (scanf("%c", &input) == 1) { if (count == 0){ printf("Nepodarilo sa nacitat zaklad x\n"); return 0; } - printf("Nepodarilo sa nacitat polynom na %d mieste.\n", count); return 0; } @@ -28,7 +32,6 @@ int main() { count++; } - x = coefs[0]; length = count; for (int i = 1; i < length; i ++){