標題:
[作業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 編輯
#include<iostream>
#include<ctime>
using namespace std;
int main() {
long t = time(NULL);
cout <<"自格林威治時間1970年1月1日0時0分0秒到現在,約經過了" << t/60/60/24/365 <<"年" << endl;
system("pause");
}
複製代碼
作者:
呂宗晉
時間:
2023-5-30 16:56
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從格林威治時間1970年1月1號0點0分0秒到現在,經過了"<<t<<"秒!"<<endl;
cout<<"(約為"<<t/60/60/24/365<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂得銓
時間:
2023-6-2 17:32
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從格林威治時間1970年1月1號0點0分0秒到現在,經過了"<<t<<"秒!"<<endl;
cout<<"(約為"<<t/60/60/24/365<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-6-2 19:34
秒/60->分鐘/60->小時/24->天/365->年
作者:
盧玄皓
時間:
2023-6-2 19:38
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從格林威治時間1970年1月1號0點0分0秒到現在,經過了"<<t<<"秒!"<<endl;
cout<<"(約為"<<t/60/60/24/365<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2023-6-2 19:42
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
long a;
a=time(NULL);
cout<<"自格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<a<<"秒"<<endl;
a=a/60/60/24/365;
cout<<"約"<<a<<"年"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張絜晰
時間:
2023-6-2 19:42
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
long t=(time(NULL));
cout<<"自格林威治時間1970年1月1日0時0分0秒到現在,經過了"<<t<<"秒,也就是"<<t/60/60/24/365<<"年"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
廖秝瑜
時間:
2023-6-2 19:44
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
long t=time(NULL)
for(int i=1; i<=20; i++)
cout <<"從格林威治時間1970年1月1日0時0分0秒到現在,約經過了" <<t<<"秒" << endl;
cout<<"約為"<<t/60/60/24/365<<"年"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2023-6-2 19:46
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
int b=time(NULL);
cout<<"格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<b<<"seconds"<<endl;
cout<<"(roughly "<<b/60/60/24/365<<" year/years)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-6-2 19:48
8
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2