第4周專案1-三角形類的建構函式(2)-預設建構函式

不被看好的青春叫成長發表於2015-03-27
*  
 * Copyright (c) 2015, 煙臺大學計算機學院  
 * All rights reserved.  
 * 檔名稱:test.cpp  
 * 作    者:劉暢   
 * 完成日期:2015年 3 月 27 日  
 * 版 本 號:v1.0  
 * 
 * 問題描述:設計預設建構函式,即不指定引數時,預設各邊長為1。
 * 輸入描述:NULL;
 * 程式輸出:按要求輸出。


程式碼如下:

#include <iostream>
#include <cmath>
using namespace std;
class Triangle
{
public:
    Triangle()
    {
        a=1;
        b=1;
        c=1;
    };
    double perimeter();                  //計算三角形的周長
    double area();                       //計算並返回三角形的面積
    void showMessage();                  //輸出三邊、周長及面積
private:
    double a,b,c;                        //三邊為私有成員資料
};
void Triangle::showMessage()
{
    cout<<"三角形的三邊長分別為:"<<a<<' '<<b<<' '<<c<<endl;
    cout<<"該三角形的周長為"<<perimeter()<<",面積為:"<<area()<<endl<<endl;
}

double Triangle::perimeter()
{
    return (a+b+c);
}

double Triangle::area()
{
    double p;
    p=(a+b+c)/2;
    return sqrt(p*(p-a)*(p-b)*(p-c));
}
int main()
{
    Triangle Tri;
    Tri.showMessage();
    return 0;
}


 


執行結果:

 

 

相關文章