#include <bits/stdc++.h> using namespace std; /* 虽然通过了示例,但是可能还有bug 目前额外添加了网上其他同学的测试样例,都通过了: (-5)^2))))+2=27 2+2^4/8-6=-2 3+(2*5+7^2)-6*(3+2)=32 123+444*2^2/111-24=115 100-5*5^(1+2)/5+25=0 ()0+2=2 (()-2=-2 )(0+2=2 -2^(-2)-2=-1.75 */ stack<char> operation; stack<double> number; char ...