让建站和SEO变得简单

让不懂建站的用户快速建站,让会建站的提高建站效率!

你的位置:腾讯新闻视界 > 财经洞察 >

    
发布日期:2024-11-07 21:42    点击次数:112

罢了这个功能的秩序有好多,这里咱们看一下最常用的一种表情。

获取系统的时辰 time.cpp:

#include <iostream>

#include <time.h>

#include <string>

int main()

{

std::string s;

char stime[256] = {0};

time_t now_time;

time(&now_time);

s = ctime(&now_time);

std::cout << s << std::endl;

return 0;

}

通过编译,g++ -time.cpp -o time ,运转./time,后不错赢得系统时辰。

然后通过函数 strftime() 不错遴荐我方念念要输出的体式,

如,仅仅输出时,分,秒:

#include <iostream>

#include <time.h>

#include <string>

int main()

{

std::string s;

char stime[256] = {0};

time_t now_time;

time(&now_time);

strftime(stime,sizeof(stime),"%H:%M:%S",localtime(&now_time));

s = stime + '\0';

std::cout << s << std::endl;

return 0;

}



  
友情链接:

Powered by 腾讯新闻视界 @2013-2022 RSS地图 HTML地图

Copyright Powered by365建站 © 2013-2024