Run ID:150360
提交时间:2026-03-27 18:55:36
#include<bits/stdc++.h> using namespace std; int a,b; char op; int main(){ cin>>a>>op>>b; switch(op){ case '+': cout<<a+b;break; case '-': cout<<a-b;break; case '*': cout<<a*b;break; case '/': cout<<a/b;break; } return 0; }