標題:
time(NULL) 函式
[打印本頁]
作者:
陳品肇
時間:
2019-3-23 13:01
標題:
time(NULL) 函式
#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)<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-3-23 15:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=60*60*24*365,B=60*60*24;
int L=time(NULL);
if(L>a)
cout<< "從格林威治時間1970年1月1號0點0分0秒到現在, 經過了"<<time(NULL)<<endl;
cout<<"(約"<<L/a<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-3-23 15:01
#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)<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-3-23 15:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從格林威治時間1970年1月1日0分0秒到現在,經過了"<<t<<"秒"<<endl;
cout<<"(約為"<<t/(365*24*60*60)<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-3-23 15:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long j=time(NULL);
cout<<"從格林威治時間1970年1月1號0點0分0秒到現在, 經過了"<<j<<"秒!"<<endl;
cout<<"(約為"<<j/(365*24*60*60)<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-3-23 15:13
#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)<<"年)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2019-3-30 13:02
#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)<<"年"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2