From aa6dacfac2a0f13571f041b50759ef869578b05e Mon Sep 17 00:00:00 2001 From: ak643du Date: Mon, 4 Mar 2024 20:15:03 +0100 Subject: [PATCH] Initialization --- cv3/program.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cv3/program.c b/cv3/program.c index 685a49f..cd8417d 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -11,6 +11,12 @@ int main() { double result = 0.0; while (count < SIZE && scanf("%lf", &input) == 1) { + if (input == 'x') + { + printf("Nepodarilo sa nacitat polynom na %d mieste.", count); + return; + } + coefs[count] = input; count++; }