以 20**-**-** **:**:** 格式输出当前日期:
#include
#include
#include
#include
usingnamespace std;
string Get_Current_Date();
int main()
{
// 将当前日期以 20** - ** - ** 格式输出
cout <<Get_Current_Date().c_str()<< endl;
getchar();
return0;
}
string Get_Current_Date()
{
time_t nowtime;
nowtime = time(NULL);//获取日历时间
char tmp[64];
strftime(tmp,sizeof(tmp),"%Y-%m-%d %H:%M:%S",localtime(&nowtime));
return tmp;
}
输出格式类似:
2018-09-1909:00:58