想问一下关于文件 函数的用法。。。
这样子是可以运行的:#include <iostream>
#include <fstream>
using namespace std;
void f()
{ofstream outfile("text.dat",ios::trunc);
if(!outfile)
{cout<<"open error!"<<endl;
exit(1);
}
for(int i=0;i<81;i++)
outfile<<i<<" ";
// outfile.close;
}
int main()
{void f();
f();
return 0;
}
而我想要把"text.dat"换成一个变量,也就是说想要把文件变成自己想要的任意名字。
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
void f()
{string name;
cout<<"input the file name:";
cin>>name;
ofstream outfile(name,ios::trunc);
if(!outfile)
{cout<<"open error!"<<endl;
exit(1);
}
for(int i=0;i<81;i++)
outfile<<i<<" ";
// outfile.close;
}
int main()
{void f();
f();
return 0;
}
改完之后就没有办法编译通过了,不懂得是为什么,,
想请教一下,是否有办法实现我的这个想法,要的话,该怎么改才好?