第五周專案三 程式的多檔案組織

2021-06-29 13:53:09 字數 1340 閱讀 5837

/*

* 檔名稱:test.cpp

* 作 者:劉佳琦

* 完成日期:2023年 4 月 3 日

* 版 本 號:v1.0

* * 問題描述:程式的多檔案組織

* 程式輸出:無

*/

main.cpp:

#include #include"********.h"

using namespace std;

int main()

float c********::perimeter(void)

float c********::area(void)

cpoint::cpoint(double xx,double yy)

void cpoint::input()

}double cpoint::distance1(cpoint p)const

// 求點到原點的距離

double cpoint::distance0() const

cpoint cpoint::symmetricaxis(char style) const

return p;

}void cpoint::output()

bool c********::isisosceles********() //是否為等腰三角形

********.h:

#ifndef ********_h_included

#define ********_h_included

class cpoint

;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; //三頂點

double a=b.distance1(c);

double b=c.distance1(a);

double c=a.distance1(b);

};#endif // ********_h_included

學習心得:再一次體驗了多檔案組織,有些生疏,但在動手操作之後還是有感覺的。

第五周專案三 用多檔案組織多個類的程式

專案3 用多檔案組織多個類的程式 將專案2用 乙個專案多個檔案 的方式實現,其中兩個類的宣告放在同乙個.h檔案中,每個類的成員函式分別放乙個檔案,main 函式用乙個檔案。體會這樣安排的優點。解決 main.cpp include include cpoint.h include c h using...

第五周專案三 用多檔案組織多個類的程式(專案二)

將專案2用 乙個專案多個檔案 的方式實現,其中兩個類的宣告放在同乙個.h檔案中,每個類的成員函式分別放乙個檔案,main 函式用乙個檔案。體會這樣安排的優點。include include include main head.h using namespace std int main class ...

第五周專案 用多檔案組織多個類的程式

main.cpp include include include h using namespace std int main class c 給出三點的建構函式 void set cpoint x,cpoint y,cpoint z float perimeter void 計算三角形的周長 fl...