C++关于文件流基本操作
请问以下代码中为何只是把0到9写入text中,并没有把22222添加到文本内容后面?#include <fstream>
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
ofstream file;
file.open ("D:\\text.txt");
int i;
for (i = 0; i < 10; i++)
{
file << i;
}
void close();
file.open("D:\\text.txt",ios::app);
file << 22222;
void close();
return 0;
}
void close() ->file.close() 一语终难尽思愁 发表于 2018-7-27 10:28
谢谢,改回来了
页:
[1]