#include #include using namespace std;
class cpoint
; double distance1(cpoint p) const //兩點之間的距離(一點是當前點——想到this了嗎?,另一點為p)
double distance0() const // 到原點(0,0)的距離
cpoint symmetricaxis(char style) const//style取'x','y'和'o'分別表示按x軸, y軸, 原點對稱
return p;
} void input() //以x,y 形式輸入座標點
void output() //以(x,y) 形式輸出座標點
};
class c********
//給出三點的建構函式
void set********(cpoint &x,cpoint &y,cpoint &z)//
float perimeter(void)//計算三角形的周長
float area(void)//計算並返回三角形的面積
bool isright********()//是否為直角三角形
bool isisosceles********() //是否為等腰三角形
private:
cpoint a,b,c; //三頂點
第五周專案二 物件作為資料成員
檔名稱 test.cpp 作 者 劉佳琦 完成日期 2015年 4 月 3 日 版 本 號 v1.0 問題描述 回想engineer類的資料成員,有眼鏡 揹包等。某engineer的眼鏡 揹包,是glass bag類的物件。類中的資料成員,其型別可以是簡單型別,也可以是類。通過這種方式,將某些類組合...
第五周 專案二 物件作為資料成員
問題 include include using namespace std class cpoint class c 給出三點的建構函式 void set cpoint x,cpoint y,cpoint z double perimeter void 計算三角形的周長 double area v...
第五周專案二 物件作為資料成員
參考解答 一 檔名稱 test.cpp 完成日期 2015年 4 月 7 日 版 本 號 v1.0 include include using namespace std class cpoint cpoint cpoint double xx,double yy class c 給出三點的建構函式...