第一周_算法训练_前缀表达式

2022-06-28 18:52:23 浏览数 (1)

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。

代码语言:javascript复制
#include<iostream>
#include<string>
#include<cstring>
using namespace std;
int add(int obj1,int obj2){
	int obj3;
	obj3=obj1 obj2;
	return obj3;
}
int subtract(int obj1,int obj2){
	int obj3;
	obj3=obj1-obj2;
	return obj3;
}
int multiply(int obj1,int obj2){
	int obj3;
	obj3=obj1*obj2;
	return obj3;
}
int divide(int obj1,int obj2){
	int obj3;
	obj3=obj1/obj2;
	return obj3;
}
int main(){
	string str;
	int obj1,obj2,obj3;
	cin>>str>>obj1>>obj2;
	if(!str.compare(" ")){
		cout<<add(obj1,obj2);
	}
	else if(!str.compare("-")){
		cout<<subtract(obj1,obj2);
	}
	else if(!str.compare("*")){
		cout<<multiply(obj1,obj2);
	}
	else if(!str.compare("/")){
		cout<<divide(obj1,obj2);
	}	
	return 0;
}

Post Views: 263

0 人点赞