usaa24/cv3/program.c

96 lines
1.9 KiB
C
Raw Normal View History

2024-10-14 19:37:39 +00:00
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
2024-10-14 19:52:25 +00:00
////////@@@@@@@@@@@
2024-10-14 19:37:39 +00:00
#define STACK_SIZE 500
struct Stack
{
float values[STACK_SIZE];
int size;
};
void push_stack(struct Stack* stack, float value);
float pop_stack(struct Stack* stack);
int count_stack(struct Stack* stack);
void push_stack(struct Stack* stack, float value)
{
2024-10-14 19:46:13 +00:00
assert(stack->size < STACK_SIZE); // Program spadne, ak zapisuje mimo
2024-10-14 19:37:39 +00:00
stack->values[stack->size] = value;
stack->size += 1;
}
float pop_stack(struct Stack* stack)
{
2024-10-14 19:46:13 +00:00
assert(stack->size > 0); // Program spadne, ak číta mimo
2024-10-14 19:37:39 +00:00
float value = stack->values[stack->size-1];
stack->size -= 1;
return value;
}
int count_stack(struct Stack* stack)
{
}
void print_stack(struct Stack* stack)
{
for (int i=0; i<stack->size; i++)
{
2024-10-14 19:46:13 +00:00
printf("%.2f ", stack->values[i]);
2024-10-14 19:37:39 +00:00
}
2024-10-14 19:46:13 +00:00
printf("\n");
2024-10-14 19:37:39 +00:00
}
int main()
{
struct Stack mystack;
mystack.size=0;
//memset(&mystack,0,sizeof(struct Stack));
char buf[505];
do
{
char* p=fgets(buf, 299, stdin);
2024-10-14 19:46:13 +00:00
//printf("{%s}",buf);
2024-10-14 19:37:39 +00:00
if(!p)
2024-10-14 19:46:13 +00:00
{
//printf("==");
2024-10-14 19:37:39 +00:00
break;
}
else
{
char c=buf[0];
float op1, op2, rez;
if(c=='+'||c=='-'||c=='/'||c=='*') // -45
{
op2=pop_stack(&mystack);
op1=pop_stack(&mystack);
switch(c)
{
case '+': rez=op1+op2; break;
case '-': rez=op1-op2; break;
case '/': rez=op1/op2; break;
case '*': rez=op1*op2; break;
2024-10-14 19:46:13 +00:00
} //p
2024-10-14 19:37:39 +00:00
}
else
2024-10-14 19:46:13 +00:00
{
rez=atof(buf);
}
push_stack(&mystack, rez);
//printf(" %.2f\n", rez);
print_stack(&mystack);
2024-10-14 19:37:39 +00:00
}
}while(1);
2024-10-14 19:52:25 +00:00
printf("no input\n");
2024-10-14 19:49:12 +00:00
2024-10-14 19:37:39 +00:00
return 0;
}