usaa21/cv3/program.c

144 lines
4.2 KiB
C
Raw Normal View History

2021-10-21 22:12:54 +00:00
#include <ctype.h>
2021-10-21 20:42:33 +00:00
#include <errno.h>
2021-10-21 20:16:34 +00:00
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <stdlib.h>
2021-10-21 22:45:57 +00:00
#define STACK_SIZE 10
2021-10-21 20:16:34 +00:00
struct stack{
float values[STACK_SIZE];
int size;
};
void print_stack(struct stack* stack);
void push_stack(struct stack* stack, float value);
float pop_stack(struct stack* stack);
int main(){
char char_value[STACK_SIZE];
memset(&char_value,0,STACK_SIZE);
float float_value;
char* ptr;
struct stack myStack;
memset(&myStack,0,sizeof(struct stack));
while(1){
2021-10-21 22:47:06 +00:00
if(myStack.size == 10){
2021-10-21 22:45:57 +00:00
//print_stack(&myStack);
puts("full stack");
break;
}
2021-10-21 20:16:34 +00:00
ptr = fgets(char_value, STACK_SIZE-1, stdin);
2021-10-21 21:20:42 +00:00
if(ptr != NULL){
2021-10-21 22:45:57 +00:00
2021-10-21 21:20:42 +00:00
if(char_value[0] == '\n'){
puts("no input");
break;
}
2021-10-21 22:16:22 +00:00
/*if(char_value[0] == '0'){
2021-10-21 20:42:33 +00:00
push_stack(&myStack,0);
print_stack(&myStack);
printf("\n");
continue;
2021-10-21 22:16:22 +00:00
}*/
2021-10-21 22:12:54 +00:00
2021-10-21 21:20:42 +00:00
if(char_value[0] == '+'){
2021-10-21 22:30:38 +00:00
if(myStack.size > 1){
2021-10-21 20:16:34 +00:00
float a = pop_stack(&myStack);
float b = pop_stack(&myStack);
float c = a+b;
push_stack(&myStack, c);
print_stack(&myStack);
printf("\n");
2021-10-21 22:30:38 +00:00
}else{puts("not enough operands"); break;}
2021-10-21 21:20:42 +00:00
}else if(char_value[0] == '-'){
2021-10-21 22:30:38 +00:00
if(myStack.size > 1){
2021-10-21 20:16:34 +00:00
float a = pop_stack(&myStack);
float b = pop_stack(&myStack);
2021-10-21 20:21:32 +00:00
float c = b-a;
2021-10-21 20:16:34 +00:00
push_stack(&myStack, c);
print_stack(&myStack);
printf("\n");
2021-10-21 22:30:38 +00:00
}else{puts("not enough operands"); break;}
2021-10-21 21:20:42 +00:00
}else if(char_value[0] == '*'){
2021-10-21 22:30:38 +00:00
if(myStack.size > 1){
2021-10-21 20:16:34 +00:00
float a = pop_stack(&myStack);
float b = pop_stack(&myStack);
float c = a*b;
push_stack(&myStack, c);
print_stack(&myStack);
printf("\n");
2021-10-21 22:30:38 +00:00
}else{puts("not enough operands"); break;}
2021-10-21 21:20:42 +00:00
} else if(char_value[0] == '/'){
2021-10-21 22:30:38 +00:00
if(myStack.size > 1){
2021-10-21 20:16:34 +00:00
float a = pop_stack(&myStack);
2021-10-21 20:42:33 +00:00
if(a == 0){
printf("division by zero\n");
2021-10-21 21:24:30 +00:00
break;
2021-10-21 21:20:42 +00:00
}else{
float b = pop_stack(&myStack);
float c = b/a;
push_stack(&myStack, c);
print_stack(&myStack);
printf("\n");
2021-10-21 20:42:33 +00:00
}
2021-10-21 22:30:38 +00:00
}else{puts("not enough operands"); break;}
2021-10-21 22:12:54 +00:00
} else if(isdigit(char_value[0]) != 0 ){
float_value = strtof(char_value, NULL);
//printf("float value: %f\n",float_value);
2021-10-21 22:20:41 +00:00
/*if(float_value == 0){
2021-10-21 22:12:54 +00:00
puts("bad input");
2021-10-21 22:20:41 +00:00
break;*/
//} else {
2021-10-21 22:12:54 +00:00
push_stack(&myStack,float_value);
print_stack(&myStack);
printf("\n");
continue;
2021-10-21 22:20:41 +00:00
2021-10-21 21:20:42 +00:00
} else {
2021-10-21 22:12:54 +00:00
puts("bad input");
break;
}
} else {
2021-10-21 21:20:42 +00:00
//push_stack(&myStack, float_value);
//print_stack(&myStack);
//printf("\n");
puts("no input");
break;
2021-10-21 20:16:34 +00:00
}
2021-10-21 22:45:57 +00:00
2021-10-21 21:20:42 +00:00
}
2021-10-21 20:16:34 +00:00
return 0;
}
void print_stack(struct stack* stack){
for(int i = 0; i < stack->size; i++){
2021-10-21 20:21:32 +00:00
printf("%.2f ",stack->values[i]);
2021-10-21 20:16:34 +00:00
}
}
void push_stack(struct stack* stack, float value){
2021-10-21 22:45:57 +00:00
//assert(stack->size < STACK_SIZE);
2021-10-21 20:16:34 +00:00
stack->values[stack->size] = value;
stack->size += 1;
}
float pop_stack(struct stack* stack){
2021-10-21 22:45:57 +00:00
//assert(stack->size > 0);
2021-10-21 20:16:34 +00:00
float value = stack->values[stack->size-1];
stack->size -= 1;
return value;
}
2021-10-21 22:30:38 +00:00