本帖最後由 張彥承 於 2014-3-22 16:49 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- long t=time(NULL);
- cout<<"從格林威治時間 1970年1月1號 0點0分0秒開始到現在經過"<<t<<"秒"<<endl;
- cout<<"(約為"<<t/(365*24*60*60)<<"年"<<
- t%=(365*24*60*60);
- cout<<t/(24*60*60)<<"月";
- t%=(24*60*60);
- cout<<t/(60*60)<<"天";
- t%=(60*60);
- cout<<t/(60)<<"分";
- t%=(60);
- cout<<t<<"秒)"; endl;
- system("pause");
- return 0;
- }
複製代碼 |