C++中如何从系统获取时间,并将其赋给一个string类型,如何办到?形式是类似于2013.03.31类型的就行了!
4个回答
展开全部
#include <iostream>
#include <fstream>
using namespace std;
int main(){
string str;
//string str = "chenchen";
//ofstream fout("readstring.dat");
//fout.write((char*)(str.c_str()),str.size());
// fout.close();
ifstream fin("readstring.dat");
fin.read((char*)str.c_str(),str.size());
cout<<"str:"<<str<<endl;
fin.close();
cout<<"read over!"<<endl;
return 0;
}
#include <fstream>
using namespace std;
int main(){
string str;
//string str = "chenchen";
//ofstream fout("readstring.dat");
//fout.write((char*)(str.c_str()),str.size());
// fout.close();
ifstream fin("readstring.dat");
fin.read((char*)str.c_str(),str.size());
cout<<"str:"<<str<<endl;
fin.close();
cout<<"read over!"<<endl;
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
SYSTEMTIME sTime;
GetSystemTime(&sTime);
printf("系统时间是:%d.%d.%d %d:%d:%d\n",sTime.wYear,sTime.wMonth,sTime.wDay,sTime.wHour,sTime.wMinute,sTime.wSecond);
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
SYSTEMTIME sTime;
GetSystemTime(&sTime);
printf("系统时间是:%d.%d.%d %d:%d:%d\n",sTime.wYear,sTime.wMonth,sTime.wDay,sTime.wHour,sTime.wMinute,sTime.wSecond);
system("pause");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
time_t t ;
t = time(NULL);
tm * pt = localtime(&t);
char buf[7]={0};
strftime(buf,sizeof(buf),"%y%m%d",pt);
strint str(buf);
t = time(NULL);
tm * pt = localtime(&t);
char buf[7]={0};
strftime(buf,sizeof(buf),"%y%m%d",pt);
strint str(buf);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询