* 作 者: 王琦
* 完成日期: 2012 年 03 月 28 日
* 版 本 号: V1.0
* 程序输出:
*含有两个类的头文件
class CPoint { private: double x; // 横坐标 double y; // 纵坐标 public: CPoint(double xx=0,double yy=0); double getX(){return x;} double getY(){return y;} double Distance(CPoint p1) const; // 两点之间的距离(一点是当前点,另一点为参数p) void input(); //以x,y 形式输入坐标点 void output(); //以(x,y) 形式输出坐标点 }; class CTriangle { public: CTriangle(CPoint &X,CPoint &Y,CPoint &Z):A(X),B(Y),C(Z){} //给出三点的构造函数 void setTriangle(CPoint &X,CPoint &Y,CPoint &Z);// double perimeter(void);//计算三角形的周长 double area(void);//计算并返回三角形的面积 bool isRightTriangle(); //是否为直角三角形 bool isIsoscelesTriangle(); //是否为等腰三角形 private: CPoint A,B,C; //三顶点 };
*.cpp文件
<pre class="cpp" name="code">
#include"shd.h" #include<iostream> * #include<Cmath> using namespace std; CPoint::CPoint(double xx,double yy):x(xx),y(yy){} // 两点之间的距离(一点是当前点,另一点为参数p) double CPoint::Distance(CPoint p) const { return sqrt((this->x-p.x)*(this->x-p.x)+(this->y-p.y)*(this->y-p.y)); } void CPoint::input() //以x,y 形式输入坐标点 { char ch; while(1) { cin>>x>>ch>>y; if(ch!=',') cout<<"格式错!"<<endl; else break; } } void CPoint::output() //以(x,y) 形式输出坐标点 { cout<<'('<<x<<','<<y<<')'<<endl; }
*.cpp文件
<pre class="cpp" name="code">
#include"shd.h" #include<Cmath> void CTriangle::setTriangle(CPoint &X,CPoint &Y,CPoint &Z) { A=X; B=Y; C=Z; } double CTriangle::perimeter(void)//计算三角形的周长 { double a=B.Distance(C),b=C.Distance(A),c=A.Distance(B); return (a+b+c); } double CTriangle::area(void)//计算并返回三角形的面积 { double a=B.Distance(C),b=C.Distance(A),c=A.Distance(B); double s=(a+b+c)/2; return sqrt(s*(s-a)*(s-b)*(s-c)); } bool CTriangle::isRightTriangle() //是否为直角三角形 { double a=B.Distance(C),b=C.Distance(A),c=A.Distance(B); if((abs(a*a+b*b-c*c)<1e-6)||(abs(b*b+c*c-a*a)<1e-6)||(abs(c*c+a*a-b*b)<1e-6)) return true; else return false; } bool CTriangle::isIsoscelesTriangle() //是否为等腰三角形 { double a=B.Distance(C),b=C.Distance(A),c=A.Distance(B); if((abs(a-b)<1e-6)||(abs(b-c)<1e-6)||(abs(c-a)<1e-6)) return true; else return false; }
*main.cpp文件
<pre class="cpp" name="code">
#include"shd.h" #include<iostream> using namespace std; void main(void) { CTriangle Tri1(CPoint(4,8),CPoint(5,6),CPoint(1,-6)); //定义三角形类的一个实例(对象) cout<<"该三角形的周长为:"<<Tri1.perimeter()<<endl; cout<<"该三角形的面积为:"<<Tri1.area()<<endl; cout<<"该三角形"<<(Tri1.isRightTriangle()?"是":"不是")<<"直角三角形"<<endl; cout<<"该三角形"<<(Tri1.isIsoscelesTriangle()?"是":"不是")<<"等腰三角形"<<endl; system("pause"); }
程序显示: