Update cv3/program.c
This commit is contained in:
parent
4dd11b3bae
commit
97831ba7b6
103
cv3/program.c
103
cv3/program.c
@ -2,6 +2,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
#define STACK_SIZE 10
|
#define STACK_SIZE 10
|
||||||
|
|
||||||
@ -18,7 +19,7 @@ void init_stack(struct stack* s) {
|
|||||||
|
|
||||||
|
|
||||||
void push_stack(struct stack* s, float value) {
|
void push_stack(struct stack* s, float value) {
|
||||||
assert(s->size < STACK_SIZE);
|
assert(s->size < STACK_SIZE); /
|
||||||
s->values[s->size] = value;
|
s->values[s->size] = value;
|
||||||
s->size += 1;
|
s->size += 1;
|
||||||
}
|
}
|
||||||
@ -33,41 +34,27 @@ float pop_stack(struct stack* s) {
|
|||||||
|
|
||||||
void print_stack(struct stack* s) {
|
void print_stack(struct stack* s) {
|
||||||
for (int i = 0; i < s->size; i++) {
|
for (int i = 0; i < s->size; i++) {
|
||||||
printf("%.2f ", s->values[i]);
|
printf("%.2f ", s->values[i]);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void process_operation(struct stack* s, const char* operation) {
|
int is_number(const char* str) {
|
||||||
float b = pop_stack(s);
|
char* endptr;
|
||||||
float a = pop_stack(s);
|
strtof(str, &endptr);
|
||||||
if (strcmp(operation, "+") == 0) {
|
return endptr != str && *endptr == '\0';
|
||||||
push_stack(s, a + b);
|
|
||||||
} else if (strcmp(operation, "-") == 0) {
|
|
||||||
push_stack(s, a - b);
|
|
||||||
} else if (strcmp(operation, "*") == 0) {
|
|
||||||
push_stack(s, a * b);
|
|
||||||
} else if (strcmp(operation, "/") == 0) {
|
|
||||||
if (b == 0) {
|
|
||||||
printf("Chyba: Delenie nulou.\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
push_stack(s, a / b);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
struct stack mystack;
|
struct stack mystack;
|
||||||
init_stack(&mystack);
|
init_stack(&mystack);
|
||||||
|
|
||||||
char input[256];
|
char input[20];
|
||||||
int has_input = 0;
|
|
||||||
|
|
||||||
printf("Poľská kalkulačka\n");
|
|
||||||
while (1) {
|
while (1) {
|
||||||
|
printf("Enter a number or an operation (+, -, *, /): ");
|
||||||
printf("Zadajte číslo alebo operáciu (+, -, *, /): ");
|
|
||||||
if (!fgets(input, sizeof(input), stdin)) {
|
if (!fgets(input, sizeof(input), stdin)) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -75,36 +62,50 @@ int main() {
|
|||||||
|
|
||||||
input[strcspn(input, "\n")] = 0;
|
input[strcspn(input, "\n")] = 0;
|
||||||
|
|
||||||
|
if (is_number(input)) {
|
||||||
char* endptr;
|
|
||||||
float value = strtof(input, &endptr);
|
float value = strtof(input, NULL);
|
||||||
if (endptr != input) {
|
|
||||||
push_stack(&mystack, value);
|
push_stack(&mystack, value);
|
||||||
has_input = 1;
|
|
||||||
print_stack(&mystack);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (strcmp(input, "+") == 0 || strcmp(input, "-") == 0 ||
|
|
||||||
strcmp(input, "*") == 0 || strcmp(input, "/") == 0) {
|
|
||||||
if (mystack.size < 2) {
|
|
||||||
printf("Chyba: Nedostatok hodnôt v zásobníku.\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
process_operation(&mystack, input);
|
|
||||||
print_stack(&mystack);
|
print_stack(&mystack);
|
||||||
} else {
|
} else {
|
||||||
printf("Chyba: Neplatný vstup.\n");
|
|
||||||
break;
|
if (mystack.size < 2) {
|
||||||
}
|
printf("Error: Not enough values on the stack to perform operation.\n");
|
||||||
}
|
break;
|
||||||
|
}
|
||||||
|
float b = pop_stack(&mystack);
|
||||||
|
float a = pop_stack(&mystack);
|
||||||
|
float result;
|
||||||
|
|
||||||
|
switch (input[0]) {
|
||||||
if (has_input) {
|
case '+':
|
||||||
printf("no input\n");
|
result = a + b;
|
||||||
} else {
|
break;
|
||||||
printf("no input\n");
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (result) {
|
||||||
|
push_stack(&mystack, result);
|
||||||
|
print_stack(&mystack);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user