// HJ50-2 四则运算.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 #include<iostream> #include<bits/stdc++.h> using namespace std; class Solution { public: int ComputerNum(string& s,int left,int right); }; int Solution::ComputerNum(string& s,int left,int right) { char op = '+'; vector...