调用当前年月日

2018-11-05 08:22:12来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

直接显示当前时间:

1 #include <iostream>
2 #include <ctime>
3 using namespace std;
4 int main()
5 {
6     time_t now = time(0);
7     char *dt = ctime(&now);
8     cout << dt;
9 }

显示当前的年月日,时分秒:

 1 #include <iostream>
 2 #include <ctime>
 3 using namespace std;
 4 int main()
 5 {
 6     time_t now = time(0);
 7     tm *ltm = localtime(&now);
 8     cout << "" << 1900 + ltm->tm_year << endl;
 9     cout << "" << 1 + ltm->tm_mon << endl;
10     cout << "" << ltm->tm_mday << endl;
11     cout << "" << ltm->tm_hour << endl;
12     cout << "" << ltm->tm_min << endl;
13     cout << "" << ltm->tm_sec << endl;
14 }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:[Algorithm] 2. Trailing Zeros

下一篇:【志银】NYOJ《题目490》翻译