Run ID:135821

提交时间:2025-11-08 14:58:01

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; char c; cin>>a>>c>>b; switch(c){ case '+':cout<<a+b;break; case '-':cout<<a-b;break; case '*':cout<<a*b;break; case '/':cout<<a/b;break; } return 0; }