小吖白又白


私信TA

用户名:H1810819128

访问量:46645

签 名:

时而理性,时而感性,无药可救

等  级
排  名 56
经  验 11354
参赛次数 4
文章发表 77
年  龄 0
在职情况 学生
学  校 贺州学院
专  业 CS

  自我简介:

菜鸡

解题思路:

没啥说的,水一发

注意事项:

参考代码:

#include<bits/stdc++.h>
using namespace std;
int add(int x, int y) {
	return x+y;
}
int sub(int x, int y) {
	return x-y;
}
int mul(int x, int y) {
	return x*y;
}
int div1(int x, int y) {
	return x/y;
}
int main() {
	char op;
	int x,y;
	cin>>op>>x>>y;
	int ans;
	switch(op) {
		case '+': ans = add(x,y); break;
		case '-': ans = sub(x,y); break;
		case '*': ans = mul(x,y); break;
		case '/': ans = div1(x,y); break;
	}
	cout<<ans<<endl;
	return 0;
}


 

0.0分

7 人评分

  评论区

  • «
  • »