注:本題只需要提交填寫部分的程式碼,請按照C++方式提交。
編寫二元運算類,實現整數的加、減、乘和除四種運算。
#include <stdio.h>
#include <iostream>
using namespace std;
class FourArithOper
{
private:
int operand1,operand2;
char operator1;
public:
FourArithOper(char op,int op1,int op2)
{
operand1=op1;
operand2=op2;
operator1=op;
}
void Algorithm()
{
cout<<operand1<<operator1<<operand2<<"=";
/**************************************************
請在該部分補充缺少的程式碼
**************************************************/
cout<<endl;
}
};
int main()
{
int op1,op2;
char op;
cin>>op>>op1>>op2; //操作符,運算數1,運算數2
FourArithOper fa(op,op1,op2);
fa.Algorithm();
return 0;
}