第六周实验报告(5)

* (程序头部注释开始)
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生 
* All rights reserved.
* 文件名称: 设计一个三角形类,能够输入三角形的三个顶点,求出其面积、周长,并判断其是否为直角三角形和等腰三角形。

* 作    者:        王琦                      
* 完成日期:     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");    
}  

程序显示:



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值