From f8cd7b9890e62f07c4153236e2fff92dc192f555 Mon Sep 17 00:00:00 2001 From: Artem Horbunov Date: Thu, 2 Apr 2020 15:43:58 +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 c2352c0..b2017f5 100644 --- a/du4/program.c +++ b/du4/program.c @@ -6,10 +6,11 @@ int main(){ int num1, num2, answer; char action; sscanf(read, "%d %c %d %*c %d", &num1, &action, &num2, &answer); - if(action != '/' || action != '*' || action != '-' ||action != '+'){ + if(action != '/' && action != '*' && action != '-' && action != '+'){ printf("CHYBA\n"); return -1; } int check = (action == '/') ? num1 / num2 : (action == '*') ? num1 * num2 : (action == '+') ? num1 + num2 : num1 - num2; printf("%s\n", (check == answer) ? "OK" : "ZLE"); + }