Board logo

標題: [作業2] time(NULL) 函式 [打印本頁]

作者: may    時間: 2023-5-26 11:55     標題: [作業2] time(NULL) 函式

利用time(NULL)函式,告訴使用者,自格林威治時間1970年1月1日0時0分0秒到現在,約經過了幾年。



本帖隱藏的內容需要回復才可以瀏覽

作者: 黃子豪    時間: 2023-5-29 20:17

本帖最後由 黃子豪 於 2023-6-2 19:39 編輯
  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;

  4. int main() {
  5.         long t = time(NULL);
  6.         cout <<"自格林威治時間1970年1月1日0時0分0秒到現在,約經過了" << t/60/60/24/365 <<"年" << endl;

  7.         system("pause");
  8. }
複製代碼

作者: 呂宗晉    時間: 2023-5-30 16:56

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;

  5. int main()
  6. {
  7.    long t=time(NULL);

  8.    cout<<"從格林威治時間1970年1月1號0點0分0秒到現在,經過了"<<t<<"秒!"<<endl;
  9.    cout<<"(約為"<<t/60/60/24/365<<"年)"<<endl;     

  10.    system("pause");
  11.    return 0;        
  12. }
複製代碼

作者: 呂得銓    時間: 2023-6-2 17:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;

  5. int main()
  6. {
  7.    long t=time(NULL);

  8.    cout<<"從格林威治時間1970年1月1號0點0分0秒到現在,經過了"<<t<<"秒!"<<endl;
  9.    cout<<"(約為"<<t/60/60/24/365<<"年)"<<endl;     

  10.    system("pause");
  11.    return 0;      
  12. }
複製代碼

作者: 鄭繼威    時間: 2023-6-2 19:34

秒/60->分鐘/60->小時/24->天/365->年
作者: 盧玄皓    時間: 2023-6-2 19:38

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;

  5. int main()
  6. {
  7.    long t=time(NULL);
  8.    
  9.    cout<<"從格林威治時間1970年1月1號0點0分0秒到現在,經過了"<<t<<"秒!"<<endl;
  10.    cout<<"(約為"<<t/60/60/24/365<<"年)"<<endl;     

  11.    system("pause");
  12.    return 0;        
  13. }
複製代碼

作者: 蔡沛倢    時間: 2023-6-2 19:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {   
  7.     long a;
  8.     a=time(NULL);
  9.     cout<<"自格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<a<<"秒"<<endl;
  10.     a=a/60/60/24/365;
  11.     cout<<"約"<<a<<"年"<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 張絜晰    時間: 2023-6-2 19:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     long t=(time(NULL));
  8.     cout<<"自格林威治時間1970年1月1日0時0分0秒到現在,經過了"<<t<<"秒,也就是"<<t/60/60/24/365<<"年"<<endl;
  9.     system("pause");   
  10.     return 0;
  11. }
複製代碼

作者: 廖秝瑜    時間: 2023-6-2 19:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     long t=time(NULL)
  8.     for(int i=1; i<=20; i++)
  9.     cout <<"從格林威治時間1970年1月1日0時0分0秒到現在,約經過了" <<t<<"秒" << endl;
  10.     cout<<"約為"<<t/60/60/24/365<<"年"<<endl;
  11.     system("pause");   
  12.     return 0;
  13. }
複製代碼

作者: 何權晉    時間: 2023-6-2 19:46

  1. #include <iostream>
  2. #include <ctime>
  3. using namespace std;
  4. int main()
  5. {
  6.     int b=time(NULL);
  7.           cout<<"格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<b<<"seconds"<<endl;
  8.         cout<<"(roughly "<<b/60/60/24/365<<" year/years)"<<endl;
  9.     system("pause");   
  10.     return 0;
  11. }
複製代碼

作者: 鄭繼威    時間: 2023-6-2 19:48

8




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2