pvjc24/a1/program.c

111 lines
2.2 KiB
C
Raw Normal View History

2024-03-27 11:55:03 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
2024-03-28 22:03:39 +00:00
bool check_spaces(const char* str) {
int len = strlen(str);
bool is_operator = false;
bool is_operand = false;
for (int i = 0; i < len; ++i) {
char current_char = str[i];
if (current_char == ' ') {
if (!is_operator && !is_operand) {
return false;
}
}
else if (current_char >= '0' && current_char <= '9') {
is_operand = true;
is_operator = false;
}
else if (current_char == '+' || current_char == '-' || current_char == '*' || current_char == '/') {
is_operator = true;
is_operand = false;
}
else {
return false;
}
}
if (!is_operand) {
return false;
}
return true;
}
2024-03-28 21:45:01 +00:00
char* check_math_problem(const char* problem) {
2024-03-28 22:03:39 +00:00
if (!check_spaces(problem)) {
return "ZLE";
}
2024-03-28 21:45:01 +00:00
if (strlen(problem) == 0) {
2024-03-27 11:55:03 +00:00
return "CHYBA";
}
2024-03-28 21:45:01 +00:00
2024-03-27 11:55:03 +00:00
double n1, n2, res;
char sing, equel;
2024-03-28 21:45:01 +00:00
if(sscanf(problem, "%lf %c %lf %c %lf", &n1, &sing, &n2, &equel, &res) != 5) {
2024-03-27 11:55:03 +00:00
return "CHYBA";
}
2024-03-28 22:03:39 +00:00
if (equel != '=') {
return "CHYBA";
}
2024-03-27 11:55:03 +00:00
double result;
switch (sing) {
case '+':
result = n1 + n2;
break;
case '-':
result = n1 - n2;
break;
case '*':
result = n1 * n2;
break;
case '/':
if (fabs(n2) < 1e-9) {
return "ZLE";
}
result = n1 / n2;
break;
default:
return "CHYBA";
}
2024-03-28 21:45:01 +00:00
2024-03-27 11:55:03 +00:00
if (fabs(result - res) < 0.01) {
2024-03-27 12:04:36 +00:00
return "OK";
2024-03-27 11:55:03 +00:00
} else {
2024-03-27 12:04:36 +00:00
return "ZLE";
2024-03-27 11:55:03 +00:00
}
}
int main() {
char problem[100];
while (true) {
fgets(problem, sizeof(problem), stdin);
2024-03-28 21:45:01 +00:00
if (strlen(problem) <= 1) {
2024-03-27 11:55:03 +00:00
break;
}
printf("%s\n", check_math_problem(problem));
}
return 0;
}
2024-03-28 22:03:39 +00:00