15第八周專案二 Time類中的運算子過載

2021-07-02 03:14:31 字數 1483 閱讀 4265

* 輸入描述:

* 程式輸出:運算結果

*/

#include using namespace std;

class ctime

void settime(int h,int m,int s);

void display();

//二目的比較運算子過載

bool operator > (ctime &t);

bool operator < (ctime &t);

bool operator >= (ctime &t);

bool operator <= (ctime &t);

bool operator == (ctime &t);

bool operator != (ctime &t);

//二目的加減運算子的過載

//返回t規定的時、分、秒後的時間

//例t1(8,20,25),t2(11,20,50),t1+t2為19:41:15

ctime operator+(ctime &t);

ctime operator-(ctime &t);//對照+理解

ctime operator+(int s);//返回s秒後的時間

ctime operator-(int s);//返回s秒前的時間

//二目賦值運算子的過載

ctime operator+=(ctime &c);

ctime operator-=(ctime &c);

ctime operator+=(int s);//返回s秒後的時間

ctime operator-=(int s);//返回s秒前的時間

第八周專案二 學生類

煙台大學計算機學院 檔名稱 xiangmu2.cpp 作 者 李亞輝 完成日期 2016年6月8日 版 本 號 vc 6.0 問題描述 設計乙個函式int max student arr 用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高者,並返回值其學號 輸入描述 無 程式輸出 輸出...

第八周專案二time類中的運算子過載

作 者 紀麗娜 完成日期 2014 年 4 月 15 日 版 本 號 v1.0 問題描述 include using namespace std class ctime void settime int h,int m,int s void display 二目的比較運算子過載 bool opera...

第八周(專案二) Time類中的運算子過載。

02.煙台大學計算機學院學生 03.all right reserved.04.檔名稱 煙台大學計算機學院學生 05.all right reserved.06.檔名稱 time類中的運算子過載。08.完成日期 2013年4月17日 09.版本號 v1.0 10.對任務及求解方法的描述部分 time...