本帖最後由 tonyh 於 2013-8-17 14:02 編輯
利用time(NULL)函式, 告訴使用者自1970年1月1日0時0分0秒到現在,
約經過了幾年幾天幾小時幾分鐘幾秒.- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- long t=time(NULL);
- cout<<"自1970年1月1日0時0分0秒到現在,"<<endl;
- cout<<"約經過了";
- cout<<t/(60*60*24*365)<<"年";
- t=t%(60*60*24*365);
- cout<<t/(60*60*24)<<"天";
- t=t%(60*60*24);
- cout<<t/(60*60)<<"小時";
- t=t%(60*60);
- cout<<t/(60)<<"分鐘";
- t=t%(60);
- cout<<t<<"秒"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |