Run ID:131186

提交时间:2025-09-21 12:49:41

#include<iostream> using namespace std; int main(){ int a,op,b; cin>>a>>op>>b; switch(op) case '+':cout<<a+b;break; case '-':cout<<a-b;break; case '*':cout<<a*b;break; default:cout<<a/b;break; } return 0; }