C++读写文件的简单例子
摘要:
#include #include using namespace std; void main() { ofstream in; in.open("com.txt",ios::trunc); //ios::trunc表示在打开文件前将文件清空,由于是写入,文件不存在则创建 int i; char a='a'; for(i=1;i #include ... 阅读全文
posted @ 2016-06-19 12:35 张明明_1 阅读(10912) 评论(0) 推荐(0) 编辑