標題:
[隨堂測驗] time(NULL) 函式 (一)
[打印本頁]
作者:
王瑞喻
時間:
2019-11-7 16:39
標題:
[隨堂測驗] time(NULL) 函式 (一)
本帖最後由 王瑞喻 於 2019-11-18 15:49 編輯
利用time(NULL)函式, 告訴使用者自格林威治時間1970年1月1日0時0分0秒到現在
,約經過了幾年.
(一年以365天來計算,不考慮閏年的狀況.)
本帖隱藏的內容需要回復才可以瀏覽
作者:
曾宥程
時間:
2019-11-9 11:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
cout<<"自格林威治時間1970年1月1日0時0分0秒到現在經過了"<<time(NULL)<<"秒"<<endl;
cout<<"(約為"<<time(NULL)/31556926<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃傳耀
時間:
2019-11-9 11:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m;
m = time(NULL);
cout<<"從1970年1月1日0十0分0秒到現在有"<<m<<"秒(共有"<<m/31536000<<"年)";
system("pause");
return 0;
}
複製代碼
作者:
洪藜芸
時間:
2019-11-9 11:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int c=time(NULL);
cout<<"從格林威治時間1970年1月1日0時0分0秒至今,已過了"<<c<<"秒。"<<endl;
cout<<"約"<<c/31556926<<"年"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-11-9 11:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<time(NULL)<<"秒!"<<endl;
cout<<"(約為"<<time(NULL)/(60*60*24*365)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-11-9 11:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"自格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<time(NULL)<<"幾秒"<<endl;
cout<<"(約為"<<time(NULL)/(60*60*24*365)<<endl
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-11-9 12:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
cout<<"從格林威治時間1970年1月1號0點0分0秒到現在,經過了"<<time(NULL)<<"秒"<<endl;
cout<<"約為"<<time(NULL) /(60*60*24*365)<<"年"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-11-11 20:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"自格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<time(NULL)<<"秒!"<<endl;
cout<<"(約為"<<time(NULL)/(60*60*24*365)<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2019-11-12 17:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"從格林威治時間1970年1月1日0時0分0秒到現在,過了"<<time(NULL)<<"秒"<<endl;
cout<<"(約為"<<time(NULL)/60/60/24/365 <<"年)"<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-11-12 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<time(NULL)<<"秒!"<<endl;
cout<<"約"<<time(NULL)/31536000<<"年!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榜蔓
時間:
2019-11-16 10:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"格林威治時間1970年1月1日0時0分0秒到現在,約經過了"<<time(NULL)<<"秒!"<<endl;
cout<<"(約為"<<time(NULL)/(60*60*24*365)<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-11-16 10:08
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
cout<<"自格林威治時間1970年1月1日0時0分0秒到現在,經過了"<<time(NULL)<<"秒"<<endl;
cout<<"共經過大約(不考慮閏年的狀況)"<<time(NULL)/60/60/24/365<<"年";
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2