谭博文


私信TA

用户名:asdrehuk

访问量:808

签 名:

我们都是文明人

等  级
排  名 15223
经  验 849
参赛次数 0
文章发表 2
年  龄 11
在职情况 学生
学  校 麓山外国语
专  业 computer(IT)

  自我简介:

解题思路:
定义二个int类型,一个char类型变量

用if函数

即可解决此题
注意事项:



参考代码:

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


 

0.0分

1 人评分

  评论区

  • «
  • »