|
time(NULL) 函式
本帖最後由 葉桔良 於 2022-7-16 17:03 編輯
利用time(NULL)函式,告訴使用者,自格林威治時間1970年1月1日0時0分0秒到現在,約經過了幾年。
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- cout<<"從格林威治時間1970年1月1號0點0分0秒到現在,經過了"<<???<<"秒!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |
|