#include<iostream> #include<stack> using namespace std; string opt = "+-*/"; bool isPriority(char top, char curr){ if(top == '('){ return false; }else if((top == '+' || top == '-') && (curr == '*' || curr == '/')){ return false; } return true; } void computer(stack<int>&...