From abf36e5838cce2d7db69a016bb55c2d1cfff3b3f Mon Sep 17 00:00:00 2001 From: ak643du Date: Tue, 5 Mar 2024 11:56:14 +0100 Subject: [PATCH] Initialization --- cv3/program.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/cv3/program.c b/cv3/program.c index 4bf146a..d9dd929 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -12,13 +12,10 @@ int main() { double result = 0.0; while (count < SIZE) { - if (getchar() == '\n') { - break; - } - if (scanf("%lf", &input) != 1) { + if (scanf("%lf", &input) != 1 && input == '\n') { printf(":("); break; - } + coefs[count] = input; count++; }