c++ 打印时间


 

https://blog.csdn.net/u011288190/article/details/45722925

 

输出麻烦, 改造一下:

#include<iostream>
#include<time.h>
#include<stdio.h>

using namespace std;

int main()
{
    time_t currentTime;
    time(&currentTime);
struct tm *p = localtime(&currentTime); char str[200] = {0}; snprintf(str, 200, "Hour:%d, minit: %d, second: %d", p->tm_hour, p->tm_min, p->tm_sec); cout << str<< endl; }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM