- C20250086's blog
【c++】关于c++的存档/读档功能
- 2022-11-9 18:52:17 @
首先感谢cxh同学的传教
需要的头文件
#include <bits/stdc++.h> #include <windows.h> #include <conio.h> #include <stdlib.h> #include <time.h> #include <stdio.h> 中的一个,我忘记是哪个了,反正全部写上即可
存档读档
void save(){//存档
ofstream outfile("存档.txt",std::ios::trunc|ios::binary|ios::in|ios::out);
//outfile <<,把你想要存的像cout<<一样输出
outfile.close();
getch();//可以删掉,个人选择
return;
}
void read(){//读档
system("cls");
ifstream fin("存档.txt");
//fin >>,存了什么读什么,一一对应
getch();//可以删掉,个人选择
return;
}
存档.txt这个文件存在了电脑里的文档,可以查看