#include<iostream>using namespace std;int main(){ int a,b,c; char q; q='+'; cin >>a>>q>>b; c==a+b; cout <<c; cin.get(); return 0;}∥计算器(有问题)