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