c++新建文件夹和txt文件,并写入数据

首先包含头文件

#include
#include
#include
#include
#include
using namespace std;

然后是主函数

int main()
{
	// 读取当地时间
	struct tm t;  // 新建 tm结构体
	time_t now;  // 定义变量 now
	time(&now);
	localtime_s(&t,&now); // 使用 localtime_s 函数读取时间,不使用 localtime
	cout<<"当地时间 是"<

你可能感兴趣的:(c++)