题解
2023-07-23 14:53:54
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
char z;
int x,y;
cin>>x>>y>>z;
if(z=='+')cout<<x+y;
else if(z=='-')cout<<x-y;
else if(z=='')cout<<xy;
else if(z=='/')cout<<x/y;
else if(z=='%')cout<<x%y;
return 0;
}
这里空空如也
有帮助,赞一个