c++输出系统当前时间

该代码段展示了一种使用C++标准库获取并打印当前日期和时间的方法。通过包含<iostream>和<ctime>头文件,利用time_t和tm结构体,程序能显示系统的时间戳,并转换为人类可读的日期和时间。
摘要由CSDN通过智能技术生成
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <ctime>
using namespace std;

int main()
{
    time_t curtime;
    time(&curtime);
    tm* nowtime = localtime(&curtime);
    cout << 1900 + nowtime->tm_year << "年" << 1 + nowtime->tm_mon << "月" << nowtime->tm_mday << "日" << endl;
    cout << "时间: " << nowtime->tm_hour << ":" << nowtime->tm_min << ":" << nowtime->tm_sec << endl;
    return 0;
}

运行之后会出现系统当前时间
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值