- #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=t%(365*24*60*60);
- cout<<t/(24*60*60)<<"天, ";
- t=t%(24*60*60);
- cout<<t/(60*60)<<"時, ";
- t=t%(60*60);
- cout<<t/60<<"分, ";
- t=t%60;
- cout<<t<<"秒)"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |