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

2021-06-29 15:26:42 字數 1632 閱讀 3618



【專案3-用多檔案組織多個類的程式】

將專案2用「乙個專案多個檔案」的方式實現,其中兩個類的宣告放在同乙個.h檔案中,每個類的成員函式分別放乙個檔案,main()函式用乙個檔案。體會這樣安排的優點。

解決**:

main.cpp:

#include #include "cpoint.h"

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

using namespace std;

int main()

; double distance1(cpoint p) const;

void input();

};#endif // cpoint_h

cpoint.cpp:

#include "cpoint.h"

#include #include #include #include using namespace std;

void cpoint:: input()

}double cpoint::distance1(cpoint p) const

c********.h:

#ifndef c********_h

#define c********_h

#include "cpoint.h"

class c********

//給出三點的建構函式

void set********(cpoint &x,cpoint &y,cpoint &z);//

void caculate(cpoint &x,cpoint &y,cpoint &z);//計算三角形三邊長

float perimeter(void);//計算三角形的周長

float area(void);//計算並返回三角形的面積

bool isright********(); //是否為直角三角形

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

private:

cpoint a,b,c; //三頂點

double a,b,c;//三邊長

};#endif // c********_h

c********.cpp:

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

#include #include #include using namespace std;

void c********::set********(cpoint &x,cpoint &y,cpoint &z)

void c********::caculate(cpoint &x,cpoint &y,cpoint &z)

{ a=a.distance1(b);

b=a.distance1(c);

c=b.distance1(c);

cout<

執行結果:

學習心得:多檔案組織多個類的程式,程式看上去簡潔明瞭多了!

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

將專案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...

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

將專案2用 乙個專案多個檔案 的方式實現,其中兩個類的宣告放在同乙個 h檔案中,每個類的成員函式分別放乙個檔案,main 函式用乙個檔案 main.cpp include include calss.h using namespace std int main class c 給出三點的建構函式 v...