From 0005449303e8dbada6929ccbb2d327d49196c9dd Mon Sep 17 00:00:00 2001 From: ak643du Date: Tue, 5 Mar 2024 11:52:30 +0100 Subject: [PATCH] Initialization --- cv3/program.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cv3/program.c b/cv3/program.c index 52e0fe0..ecff2f2 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -12,7 +12,9 @@ int main() { double result = 0.0; while (count < SIZE) { - if (scanf("%lf", &input) != 1 && input != '\n') { + if (getchar() == '\n') { + break; + if (scanf("%lf", &input) != 1) { printf(":("); break; }