From ed04c7a0b213f35ee1e85e21f94169d0f8e09af5 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 7 Mar 2024 14:09:52 +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 db83529..531a726 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -11,7 +11,7 @@ int main() { double result = 0.0; while (count < SIZE) { - if (scanf("%lf", &input) != 1) { + if (scanf("%lf", &input) != 1 && input == '\n') { if (scanf("%c", &input) == 1) { if (count == 0){ printf("Nepodarilo sa nacitat zaklad x\n"); @@ -23,7 +23,7 @@ int main() { } break; } - + coefs[count] = input; count++; }