void main(){
int flag=0,dflag=1;
int i,j;
int t=0;
char str[50];
cout<<"输入表达式(以=结束):";
gets(str);
i=0;
int res=0;
while(str[i]!='\0'){
if(str[i]<='9'&&str[i]>='0'){
if(flag==0){
flag=1;
t=str[i]-'0';
}
else{
t=t*10+(str[i]-'0');
}
}
else{
flag=0;res+=t*dflag;t=0;
if(str[i]=='+'){
dflag=1;
}
else if(str[i]=='-'){
dflag=-1;
}
}
i++;
}
cout<<"结果为"<
#include
#include
using namespace std;
int main()
{
string str;
cin >> str;
int a, b;
int i = 0;
a = 0;
while (i < str.size() && str[i] >= '0' && str[i]<='9') //是数字,获取第一个数
a = a * 10 + str[i++] - '0';
while (i < str.size())
{
int ch = str[i++]; //获取运算符
b = 0;
while (i < str.size() && str[i] >= '0' && str[i]<='9') //是数字,获取第二个数
b = b * 10 + str[i++] - '0';
switch (ch)
{
case '+' : a += b; break;
case '-' : a -= b; break;
}
}
cout << str << " = " << a << endl;
system("pause");
return 0;
}