Run ID:150626

提交时间:2026-03-29 14:02:12

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; char op; 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; }