From d7de3a0eb3ac61d8c8af974ddd4fe9b08aaf5272 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 7 Mar 2024 14:25:35 +0100 Subject: [PATCH] Initialization --- cv3/program.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/cv3/program.c b/cv3/program.c index ac613f6..34de258 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -10,27 +10,26 @@ int main() { int length = 0; double result = 0.0; - if (scanf("%lf", &x) != 1) { - printf("Nepodarilo sa nacitat zaklad x\n"); - return 0; - } - - count++; - - while (count < SIZE) { + 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; } break; } - + coefs[count] = input; count++; } - length = count-1; + x = coefs[0]; + length = count; for (int i = 1; i < length; i ++){ result = result * x + coefs[i];