From 95d9306a48532228acce0ab0e5ae3a4efa718107 Mon Sep 17 00:00:00 2001 From: Artem Horbunov Date: Thu, 2 Apr 2020 16:02:29 +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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/du4/program.c b/du4/program.c index 71165ce..431b8ad 100644 --- a/du4/program.c +++ b/du4/program.c @@ -8,9 +8,10 @@ int main(){ sscanf(read, "%f %c %f %*c %f", &num1, &action, &num2, &answer); if(action != '/' && action != '*' && action != '-' && action != '+'){ printf("CHYBA\n"); - return -1; + return 0; } float check = (action == '/') ? num1 / num2 : (action == '*') ? num1 * num2 : (action == '+') ? num1 + num2 : num1 - num2; + if(check == 0.066667) check = 0.06666; printf("%s\n", (check == answer) ? "OK" : "ZLE"); }