编程学习网为您整理以下代码实例,主要实现:C++当前日期和时间,希望可以帮到各位朋友。
#include <iostream>
#include <ctime>
using namespace std;
int main() {
// current date/time based on current system
time_t Now = time(0);
// convert Now to string form
char* dt = ctime(&Now);
cout << "The local date and time is: " << dt << endl;
// convert Now to tm struct for UTC
tm *gmtm = gmtime(&Now);
dt = asctime(gmtm);
cout << "The UTC date and time is:"<< dt << endl;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!