#include <stdio.h> #include <stdlib.h> // 연산자 우선순위을 구하는 함수 // 곱셈과 나눗셈의 우선순위가 덧셈이나 뺄셈보다 더 높다. int precedence(int op) { if(op=='(') return 0; if(op=='+'||op=='-') return 1; if(op=='*'||op=='/') return 2; return 3; } // 연산자 이외에는 괄호, 피연산자(숫자, 문자), 숫자, 문자 ..