#include <iostream>
#include <ctime>
 
using namespace std;
 
int main( )
{
   // 基于当前系统的当前日期/时间
   time_t now = time(0);
   
   // 把 now 转换为字符串形式
   char* dt = ctime(&now);
 
   cout << "本地日期和时间:" << dt << endl;
 
   // 把 now 转换为 tm 结构
   tm *gmtm = gmtime(&now);
   dt = asctime(gmtm);
   cout << "UTC 日期和时间:"<< dt << endl;
}

标签: none

已有 4 条评论

  1. 你的文章让我感受到了快乐,每天都要来看一看。http://www.daruimf.com

  2. 你的才华让人惊叹,你是我的榜样。http://www.jxycygl.com

  3. 你的文章让我感受到了艺术的魅力,谢谢! https://www.4006400989.com/qyvideo/19707.html

  4. 你的文章让我感受到了生活的美好,谢谢! https://www.4006400989.com/qyvideo/74315.html

添加新评论