/* (程式頭部注釋開始)
* 程式的版權和版本宣告部分
* 作 者: 郭巖巖
* 完成日期:2012 年4月 17日
* 版 本 號: vc.1
* 對任務及求解方法的描述部分
* 輸入描述:
* 問題描述:
* 程式輸出:
*程式頭部的注釋結束
*/
#include using namespace std;
#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);
//二目運算子的過載
ctime operator+(ctime &c);//返回c所規定的時、分、秒後的時間,例t1(8,20,25),t2(11,20,50),t1+t2為:41:15
ctime operator-(ctime &c);//對照+理解
ctime operator+(int h);//返回s秒後的時間
ctime operator-(int h);//返回s秒前的時間
//一目運算子的過載
ctime operator++(int);//後置++,下一秒
ctime operator++();//前置++,下一秒
ctime operator--(int);//後置--,前一秒
ctime operator--();//前置--,前一秒
//賦值運算子的過載
ctime operator+=(ctime &c);
ctime operator-=(ctime &c);
ctime operator+=(int h);//返回s秒後的時間
ctime operator-=(int h);//返回s秒前的時間
friend istream& operator>>(istream& input,ctime &c);
friend ostream& operator<
};//下面實現所有的運算子過載**。
//為簡化程式設計,請注意通過呼叫已有函式,利用好各函式之間的關係
第九周實驗報告 任務五
源程式 include using namespace std class cequation cequation cequation double aa,double bb istream operator istream in,cequation e ostream operator ostre...
第九周實驗報告任務五
程式頭部注釋開始 程式的版權和版本宣告部分 作 者 郭巖巖 完成日期 2012 年4月 17日 版 本 號 vc.1 對任務及求解方法的描述部分 輸入描述 問題描述 程式輸出 程式頭部的注釋結束 include iostream using namespace std class cequation...
第九周實驗報告(任務1)
源程式 includeusing namespace std class complex complex double r,double i friend istream operator istream input,complex c2 friend ostream operator friend...