From d944f7a475c8eb6950834ae1471b0171e0cec9a6 Mon Sep 17 00:00:00 2001 From: Artem Horbunov Date: Thu, 2 Apr 2020 16:12:44 +0000 Subject: [PATCH] =?UTF-8?q?Aktualizovat=20=E2=80=9Edu4/program.c=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- du4/program.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/du4/program.c b/du4/program.c index 431b8ad..ea316cc 100644 --- a/du4/program.c +++ b/du4/program.c @@ -11,7 +11,9 @@ int main(){ return 0; } float check = (action == '/') ? num1 / num2 : (action == '*') ? num1 * num2 : (action == '+') ? num1 + num2 : num1 - num2; - if(check == 0.066667) check = 0.06666; + check *= 100000; + int tmp = check; + check = (float) tmp / 100000; printf("%s\n", (check == answer) ? "OK" : "ZLE"); - + //printf("%f\n", check); }