問題及**:
/*
*檔名稱:point.cpp
*作 者:趙敏
*完成日期:2023年5月24日
*版 本 號:v1.0**/
#include#includeusing namespace std;
class point //定義座標點類
; point(double x0, double y0):x(x0), y(y0) {};
void printpoint(); //輸出點的資訊
double getx()
double gety()
protected:
double x,y; //點的橫座標和縱座標
};void point::printpoint()
{ cout<
執行結果:
知識點總結:
繼承與派生
第十周 專案3 點類派生直線類
定義點類point,並以點類為基類,派生出直線類line,從基類中繼承的點的資訊表示直線的中點。請閱讀下面的 並將缺少的部分寫出來。cpp view plaincopyprint?在code上檢視 片派生到我的 片 include include using namespace std class ...
第11周 專案3 點類派生直線類
問題描述 專案3 點類派生直線類 定義點類point,並以點類為基類,派生出直線類line,從基類中繼承的點的資訊表示直線的中點。請閱讀下面的 並將缺少的部分寫出來。cpp view plain copy print include include using namespace std class...
第10周專案3 點類派生直線類
問題描述 定義點類point,並以點類為基類,派生出直線類line,從基類中繼承的點的資訊表示直線的中點。請閱讀下面的 並將缺少的部分寫出來。include includeusing namespace std class point 定義座標點類 point double x0,double y0...