usaa24/cv3/program.c

113 lines
2.4 KiB
C
Raw Normal View History

2024-10-07 12:38:16 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
2024-10-17 12:07:00 +00:00
#include <ctype.h>
2024-10-07 12:38:16 +00:00
#define STACK_SIZE 10
2024-10-17 12:02:05 +00:00
2024-10-07 12:38:16 +00:00
struct stack {
float values[STACK_SIZE];
int size;
};
2024-10-17 12:02:05 +00:00
2024-10-17 11:38:16 +00:00
void init_stack(struct stack* s) {
memset(s, 0, sizeof(struct stack));
}
2024-10-17 12:02:05 +00:00
2024-10-17 11:38:16 +00:00
void push_stack(struct stack* s, float value) {
2024-10-17 12:07:00 +00:00
assert(s->size < STACK_SIZE); /
2024-10-17 11:38:16 +00:00
s->values[s->size] = value;
s->size += 1;
}
2024-10-17 12:02:05 +00:00
2024-10-17 11:38:16 +00:00
float pop_stack(struct stack* s) {
2024-10-17 12:02:05 +00:00
assert(s->size > 0);
2024-10-17 11:38:16 +00:00
s->size -= 1;
return s->values[s->size];
}
2024-10-17 12:02:05 +00:00
2024-10-17 11:38:16 +00:00
void print_stack(struct stack* s) {
for (int i = 0; i < s->size; i++) {
2024-10-17 12:07:00 +00:00
printf("%.2f ", s->values[i]);
2024-10-17 11:38:16 +00:00
}
2024-10-17 12:07:00 +00:00
printf("\n");
2024-10-17 11:38:16 +00:00
}
2024-10-07 12:38:16 +00:00
2024-10-17 12:02:05 +00:00
2024-10-17 12:07:00 +00:00
int is_number(const char* str) {
char* endptr;
strtof(str, &endptr);
return endptr != str && *endptr == '\0';
2024-10-17 11:58:16 +00:00
}
2024-10-17 12:07:00 +00:00
2024-10-07 12:38:16 +00:00
int main() {
struct stack mystack;
2024-10-17 12:07:00 +00:00
init_stack(&mystack);
2024-10-07 12:38:16 +00:00
2024-10-17 12:07:00 +00:00
char input[20];
2024-10-17 11:44:53 +00:00
2024-10-07 12:38:16 +00:00
while (1) {
2024-10-17 12:07:00 +00:00
printf("Enter a number or an operation (+, -, *, /): ");
2024-10-07 12:38:16 +00:00
if (!fgets(input, sizeof(input), stdin)) {
2024-10-17 12:02:05 +00:00
break;
2024-10-07 12:38:16 +00:00
}
2024-10-17 12:02:05 +00:00
2024-10-17 11:38:16 +00:00
input[strcspn(input, "\n")] = 0;
2024-10-17 11:20:43 +00:00
2024-10-17 12:07:00 +00:00
if (is_number(input)) {
float value = strtof(input, NULL);
2024-10-17 11:38:16 +00:00
push_stack(&mystack, value);
print_stack(&mystack);
2024-10-17 12:07:00 +00:00
} else {
2024-10-17 11:38:16 +00:00
if (mystack.size < 2) {
2024-10-17 12:07:00 +00:00
printf("Error: Not enough values on the stack to perform operation.\n");
2024-10-17 12:02:05 +00:00
break;
2024-10-07 12:38:16 +00:00
}
2024-10-17 12:07:00 +00:00
float b = pop_stack(&mystack);
float a = pop_stack(&mystack);
float result;
switch (input[0]) {
case '+':
result = a + b;
break;
case '-':
result = a - b;
break;
case '*':
result = a * b;
break;
case '/':
if (b == 0) {
printf("Error: Division by zero.\n");
break;
}
result = a / b;
break;
default:
printf("Error: Unknown operation '%s'.\n", input);
push_stack(&mystack, a);
push_stack(&mystack, b);
break;
}
2024-10-17 11:32:53 +00:00
2024-10-17 12:07:00 +00:00
if (result) {
push_stack(&mystack, result);
print_stack(&mystack);
}
}
2024-10-17 11:41:41 +00:00
}
2024-10-07 12:38:16 +00:00
return 0;
}