C++建立一个类 实现两个整数的加减乘除 各位帮帮忙看我这个程序错在哪儿了啊 谢谢哈!!!!!急用~~~~

2024-12-19 10:21:31
推荐回答(3个)
回答1:

类不是这么用的 你定义了类 就得在主函数中声明对象阿 类的成员函数也不是那样定义的 错误购多的阿 才5分 兄弟 你也够抠门的 哈哈 ...我给你把大概的结构说一下吧具体的你自己去实现

class integer
{
public:
成员函数
..
..
..
private:
int m,n;//数据成员
};

int integer::plus(..){..}
int integer::minus(..){..}

#include
using namespace std;
int main()
{
integer itg;
int a,b,x,y,z,t;
cout<<"please input 2 integers to a,b"<cin>>a>>b;
x=itg.plus(a,b);
print(x);
cout<<"please input 2 integers to a,b"<cin>>a>>b;
y=itg.minus(a,b);
print(y);
cout<<"please input 2 integers to a,b"<cin>>a>>b;
z=itg.mulitip(a,b);
print(z);
cout<<"please input 2 integers to a,b"<cin>>a>>b;
t=itg.devide(a,b);
print(t);
return 0;
}

回答2:

代码挺多的能加分多写吗

回答3:

编译器没了 你把你的出错信息发出来看看