實驗目的:模板類的使用
模板類的使用
* 作
者: 胡斌 * 完成日期: 2012 年 4月2 日
* 版本號:
v1.0
* 程式頭部的注釋結束(此處也刪除了斜槓)
#include using namespace std;
template class complex
complex(numtype r,numtype i)
complex complex_add(complex &);
void display( );
private:
numtype real;
numtype imag;
};template complexcomplex::complex_add(complex&c2)
template void complex::display( )
截圖:
#include using namespace std;
template class complex
complex(numtype r,numtype i)
complex complex_add(complex &);
complex complex_minus(complex &);
complex complex_multiply(complex &);
complex complex_divide(complex &);
void display( );
private:
numtype real;
numtype imag;
};template complexcomplex::complex_add(complex&c2)
template complexcomplex::complex_minus(complex&c2)
template complexcomplex::complex_multiply(complex&c2)
template complexcomplex::complex_divide(complex&c2)
template void complex::display( )
截圖:
不好做,跟同學研究做出來的。
第3周實驗報告
任務2 課後題目 程式找錯 include using namespace std class time time t int main void void time set time void 函式返回型錯誤,缺少域運算子 void time show time void 與上同 任務3 對類的功...
第3周實驗報告4
程式頭部注釋開始 程式的版權和版本宣告部分 檔名稱 計算長方體的體積 面積 作 者 郭巖巖 完成日期 2012 年3 月6 日 版 本 號 vc.1 對任務及求解方法的描述部分 問題描述 輸入描述 依次輸入3個長方體的長 寬 高 includeusing namespace std int n 0 ...
第8周實驗報告3
程式頭部注釋開始 程式的版權和版本宣告部分 檔名稱 分數類 作 者 張旭 完成日期 2012 年 4 月 10 日 版 本 號 略 對任務及求解方法的描述部分 輸入描述 略 問題描述 略 程式輸出 略 程式頭部的注釋結束 include using namespace std class cfrac...