#include <stdio.h> #include <string> #include <stack> #include <map> using namespace std; int main(){ char str[1024]; scanf("%s",str); map<char,int> opPriority = { {'\0',0}, {'+',1},{'-',1}, {'*',2},{'/',2}, }; stack<char> opStack; stack<float> num...