关于文件读写
#include<iostream>#include<fstream>
using namespace std;
int main()
{
char a[]="this is a book!!!";
char k;
fstream file2("F:/tsd.txt",ios::out|ios::in);
if(!file2)
{
cout<<"不能打开此文件"<<endl;
system("pause");
return 0;
}
else
file2<<a;
while(!file2.eof())
{
file2.get(k);
cout<<k;
}
file2.close();
system("pause");
return 0;
}
为什么不能在屏幕上显示啊?
还有个问题,如果F:\\tas.txt文件没有,为什么不能自己创建?