关于C++设计三角形

设计一个三角形类triangle,私有数据成员为高和底.要求定义重载运算符">",以比较两个三角形面积的大小.谢谢大家了...... 设计一个三角形类triangle,私有数据成员为高和底.要求定义重载运算符">",以比较两个三角形面积的大小.
谢谢大家了...
展开
 我来答
伤倏臀w
2010-05-19 · TA获得超过1115个赞
知道大有可为答主
回答量:864
采纳率:60%
帮助的人:606万
展开全部
#include<iostream.h>
#include<cmath>

class Triangle
{
public:
friend double operator + (const Triangle& t1,const Triangle& t2);
Triangle(double t_length,double t_width,double t_high);
Triangle();
void area();
void input();
void output();
private:
double length;
double width;
double high;
double areas;
};
int main()
{
Triangle tri1,tri2;
double tri;
cout<<"Please input the edges of the triangle one!(press enter to continue)\n";
tri1.input();
tri1.area();
cout<<"Please input the edges of the triangle two!(press enter to continue)\n";
tri2.input();
tri2.area();
tri=tri1+tri2;
cout << "The area of triangle one add triangle two is:\n" << tri << endl;
return 0;
}
double operator + (const Triangle& t1,const Triangle& t2)
{
double temp;
temp=t1.areas+t2.areas;
return temp;
}
Triangle::Triangle(double t_length,double t_width,double t_high)
{
length=t_length;
width=t_width;
high=t_high;
}
Triangle::Triangle():length(0),width(0),high(0),areas(0)
{
}
void Triangle::area()
{
double s;
s=(length+width+high)/2;
areas=sqrt(s*(s-length)*(s-width)*(s-high));
}
void Triangle::input()
{
cin >> length >> width >> high;
while(((length+width)<high)||((length+high)<width)||((width+high)<length))
{
cout<<"The data what you input is wrong,please input it again!\n";
cin >> length >> width >> high;
}
}
void Triangle::output()
{
cout << areas << endl;
}
分给我吧,打字好累的
wilypcabc
2010-05-19 · TA获得超过282个赞
知道答主
回答量:72
采纳率:100%
帮助的人:0
展开全部
class CTriangle
{
public:
CTriangle(int low, int height);
int GetArea();
bool operator>(CTriangle& a);
private:
int m_low;
int m_height;
};

CTriangle::CTriangle(int low, int height)
{
m_low = low;
m_height = height;
}

int CTriangle::GetArea()
{
return m_low*m_height/2;
}

bool CTriangle::operator>(CTriangle& a)
{
if(GetArea() > a.GetArea())
return true;
return false;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
凤娃123456
2010-05-20
知道答主
回答量:13
采纳率:0%
帮助的人:0
展开全部
ING
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式