欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

调用当前年月日

程序员文章站 2022-05-25 16:53:33
直接显示当前时间: 显示当前的年月日,时分秒: ......

直接显示当前时间:

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 }