class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 返回表达式的值 * @param s string字符串 待计算的表达式 * @return int整型 */ int solve(string s) { // write code here stack<int> st_num; stack<char> st_op; st_op.push('#'); int a=0,b=0,number=0,is_num=0; int i = 0,n=s.length(); s+='#'; c...