*all right reserved.
*檔名稱:main。cpp
*作 者:閆舒
*完成日期:2023年6月21日
*版 本 號:vc++6.0
* *問題描述:實現time類中的運算子過載。
*輸入描述:
*程式輸出:
*/#include using namespace std;
class ctime
;//建構函式
ctime::ctime(int h,int m,int s)
// 設定時間
void ctime::settime(int h,int m,int s)
// 過載輸入運算子》
istream &operator>>(istream &in,ctime &t)
return cin;
}// 過載輸出運算子<<
ostream &operator<
bool ctime::operator < (ctime &t)// 判斷時間t1t.hour) return false;
if (minutet.minute) return false;
if (secondt) return false;
return true;
}bool ctime::operator != (ctime &t) // 判斷時間t1!=t2
bool ctime::operator >= (ctime &t)// 判斷時間t1>=t2
//二目運算子的過載
// 計算時間之和, 返回c所規定的時、分、秒後的時間,例t1(8,20,25),t2(11,20,50),t1+t2為:41:15
ctime ctime::operator + (ctime &t)
if (m>59)
while (h>23) h-=24;
ctime t0(h,m,s);
return t0;
}//返回s秒後的時間
ctime ctime::operator+(int s)
// 計算時間之差
ctime ctime::operator - (ctime &t)
if (m<0)
while (h<0) h+=24;
ctime t0(h,m,s);
return t0;
}//返回s秒前的時間
ctime ctime::operator-(int s)
//一目運算子的過載
ctime ctime::operator++(int)//後置++,下一秒
ctime &ctime::operator++()//前置++,下一秒
ctime ctime::operator--(int)//後置--,前一秒
ctime &ctime::operator--()//前置--,前一秒
//賦值運算子的過載
ctime &ctime::operator+=(ctime &c)
ctime &ctime::operator-=(ctime &c)
ctime &ctime::operator+=(int s)//返回s秒後的時間
ctime &ctime::operator-=(int s)//返回s秒前的時間
int main()
{ ctime t1,t2,t;
cout<
cin>>t1;
cout<
cin>>t2;
cout<
if (t1>t2) cout執行結果:
第十二周專案二
include include include a.h 功能 由乙個反映圖中頂點鄰接關係的二維陣列,構造出用鄰接矩陣儲存的圖 引數 arr 陣列名,由於形式引數為二維陣列時必須給出每行的元素個數,在此將引數arr宣告為一維陣列名 指向int的指標 n 矩陣的階數 g 要構造出來的鄰接矩陣資料結構 v...
第十二周專案二
完成日期 2017年11月22日 版 本 號 12.11 問題描述 最小生成樹的克魯斯卡爾演算法 ps 運用了第十周專案一圖的資料庫 測試用圖結構 void insertsort edge e,int n 對e 0.n 1 按遞增有序進行直接插入排序 e j 1 temp 在j 1處插入e i vo...
第十二周專案二
煙台大學計算機學院 問題描述 kruskal演算法的驗證 輸入描述 無 輸出描述 最小生成樹的構成 用到了graph.h include include include graph.h define maxsize 100 typedef struct edge void insertsort ed...