#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> using namespace std; map<char, int> mymap = { {'+', 0},{'-', 0},{'/', 1},{'*', 1} }; float jisusan(float x, float y, char oper){ float res; swit...