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