/* (程式頭部注釋開始)
* 程式的版權和版本宣告部分
* 檔名稱:
* 作 者: 趙桐輝
* 完成日期: 2023年4 月16 日
* 版 本 號:
* 對任務及求解方法的描述部分
* 輸入描述:
* 問題描述: 接第8周任務2,定義time類中的《和》運算子過載,實現時間的輸入輸出,改造原程式中對運算結果顯示方式,使程式讀起來更自然。
* 程式輸出:
* 程式頭部的注釋結束
*/
#include using namespace std;
class ctime
void settime(int h, int m, int s);
//比較運算子(二目)的過載
bool operator > (ctime &t);
bool operator < (ctime &t);
bool operator >= (ctime &t);
bool operator <= (ctime &t);
bool operator == (ctime &t);
bool operator != (ctime &t);
//二目運算子的過載
ctime operator + (ctime &c);//返回c所規定的時、分、秒後的時間,例t1(8,20,25),t2(11,20,50),t1+t2為:41:15
ctime operator - (ctime &c);//對照+理解
ctime operator + (int s);//返回s秒後的時間
ctime operator - (int s);//返回s秒前的時間
//一目運算子的過載
ctime operator ++ (int);//後置++,下一秒
ctime operator ++ ();//前置++,下一秒
ctime operator -- (int);//後置--,前一秒
ctime operator -- ();//前置--,前一秒
//賦值運算子的過載
ctime operator += (ctime &c);
ctime operator -= (ctime &c);
ctime operator += (int s);//返回s秒後的時間
ctime operator -= (int s);//返回s秒前的時間
friend ostream & operator << (ostream&, ctime&);
friend istream & operator >> (istream&, ctime&);
};//下面實現所有的運算子過載**。
//為簡化程式設計,請注意通過呼叫已有函式,利用好各函式之間的關係
void ctime::settime(int h, int m, int s)
ostream &operator << (ostream &output, ctime &c)
bool is_time(int h, int m, int s)
else
} istream &operator >> (istream &input, ctime &c)
else }
bool ctime::operator >= (ctime &t)
else }
bool ctime::operator <= (ctime &t)
else }
bool ctime::operator == (ctime &t)
else }
bool ctime::operator != (ctime &t)
else }
bool ctime::operator < (ctime &t)
else }
ctime ctime::operator + (ctime &c)
ctime ctime::operator - (ctime &c)
else
c2.hour = time / 3600;
time = time % 3600;
c2.minute = time / 60;
time = time % 60;
c2.second = time;
return c2;
}ctime ctime::operator + (int 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)
ctime ctime::operator -= (int s)
void main()
{ ctime t1, t2, t;
cin >> t1 >> t2;
cout << "t1為:" << t1;
cout << "t2為:" << t2;
cout << "下面比較兩個時間大小:\n" ;
第九周實驗報告2
程式頭部注釋開始 程式的版權和版本宣告部分 檔名稱 流運算子過載運算子 complex類 作 者 劉程程 完成日期 2012 年 4 月 17日 版 本 號 1.054 對任務及求解方法的描述部分 問題描 述 按第八周任務1,定義complex類中的 和 運算子過載,實現時間的輸入輸出,改造原程式中...
第九周實驗報告
報告1 到底完成了哪個任務,必須宣告清楚 實驗目的 學會迴圈語句的使用實驗內容 程式設計序,求解1 2 2 3 3 4 19 20 或1 3 3 5 5 7 7 9 19 21 以下是我編制的程式 include using namespace std int main sum sum float ...
C 第九周實驗報告
報告1 實驗目的 學會迴圈語句的使用 實驗內容 程式設計序,求解1 2 2 3 3 4 19 20 或1 3 3 5 5 7 7 9 19 21 以下是我編制的程式 include include using namespace std int main cout return 0 在必要的位置上給...