Unit5_problem1.1_构造初始化

/*Univercity:烟台大学
*@Class</A>计134~4
*@Author:薛富磊
*@Time:2014-3-25
*@Function:三角形类的构造函数初始化
*@Args:
*@Return:
*/

#include <iostream>

#include<Cmath>

using namespace std;

class Triangle
{
public:
    Triangle(double x,double y,double z):a(x),b(y),c(z){};
    double perimeter();//计算三角形的周长
    double area();//计算并返回三角形的面积
    void showMessage();
private:
    double a,b,c; //三边为私有成员数据
};
double Triangle::perimeter()
{
    return a+b+c;
}
double Triangle::area()
{
    double q;
    q=(a+b+c)/2;
    return sqrt(q*(q-a)*(q-b)*(q-c));

}
void Triangle::showMessage()
{
    cout<<"三角形的三边长分别为:"<<a<<' '<<b<<' '<<c<<endl;
    cout<<"该三角形的周长为"<<perimeter()<<",面积为:"<<area()<<endl<<endl;
}
int main()
{
    Triangle tri(4,5,6);
    tri.showMessage();
    return 0;
}
/*心得体会:
           初始化构造
           刚听很简单
           在听很难了
           特别指针往后!!!
           懵懵懂懂
Unit5_problem1.1_构造初始化_第1张图片

你可能感兴趣的:(Unit5_problem1.1_构造初始化)