C C++如何获取当前系统时间

2025-01-02 12:31:06
推荐回答(1个)
回答1:

代码如下:

#include 
#include 
#include 

int main() 
{
// 获取当前时间
tm tm;
_getsystime(&tm);

// 将当前时间转换成字符串并输出
char str[100];
strftime(str, sizeof(str), "%c", &tm);
printf("%s\n", str);

system("pause");
return 0;
}

运行结果: