#include <iostream> #include <unordered_map> #include <stack> #include <string> using namespace std; unordered_map<char,int> um={ {'#',0},{'$',1},{'+',2},{'-',2},{'*',3},{'/',3} }; double calculate(double,double,char ); int main() { ios::sync_with_stdio(false)...