1.读题题目要求输入一个字符串和两个整数, 字符串可以得到运算方式, 再用给出的数字运算。给出的字符串不分大小写。当计算除法时,除数为零输出Error。2.要解决的问题我认为难的只有一个,就是字符串不分大小写。这个可以用transform(s1.begin(),s1.end(),s1.begin(),::tolower);来全部转换成小写3.代码代码如下: #include <iostream> #include <string> #include <algorithm> using namespace std; int main() { strin...