第九周專案二

2021-06-21 15:37:32 字數 1504 閱讀 9264

/*

*檔名稱:

*完成日期:2023年 04月22號

*版本號:v1.0

*對任務及求解方法的描述部分:

*輸入描述: 無

*問題描述:時間類中的運算子過載

*程式輸出:無

*問題分析:

*演算法設計:

*/#include using namespace std;

class ctime

;ctime::ctime(int h,int m,int s)

void ctime::settime(int h,int m,int s)

void ctime::display()

bool ctime::operator < (ctime &t)

bool ctime::operator == (ctime &t)

bool ctime::operator != (ctime &t)

ctime ctime::operator+(ctime &t)

m=minute+t.minute;

if (m>59)

h=hour+t.hour;

if (h>23) h-=24;

ctime t3(h,m,s);

return t3;

}ctime ctime::operator-(ctime &t)

if (m<0)

if (h<0) h+=24;

ctime t3(h,m,s);

return t3;

}ctime ctime::operator+(int s)

ctime ctime::operator-(int s)

ctime ctime::operator+=(ctime &c)

ctime ctime::operator-=(ctime &c)

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

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

第九周專案二

corpyright c 2013,煙台大學計算機學院 all right reseved.完成日期 2014年4月21日 版本號 v1.0 輸入描述 問題描述 時間累!程式輸出 問題分析 演算法設計 include include using namespace std class ctime v...

第九周專案二

煙台大學計算機學院 檔名稱 xiangmu.cpp 完成日期 2017年11月9日 問題描述 實現二叉樹的先序 中序 後序遍歷的遞迴演算法,並對用 a b d,e h j,k l,m n c f,g i 建立的二叉樹進行測試。輸入描述 無 輸出描述 輸出二叉樹先中後序遍歷結果 include inc...

第九周專案四

corpyright c 2013,煙台大學計算機學院 all right reseved.完成日期 2014年4月22日 版本號 v1.0 輸入描述 問題描述 建立乙個向量類myvector!程式輸出 問題分析 演算法設計 include using namespace std class myv...