我的代码有问题。为什么这段代码打不开文件?谢谢
ofstream out("a.text");
while (i != 6)
{
out << b[i] << ' ' ;
i++ ;
}
out.close();
i = 0 ;
for ( i ; i < 6 ; i++)
{
b[i] = 0 ;
}
ifstream in("a.txt"); // problem in this line
if(!in)
{
cout << "error" ;
cin.get();
exit(0);
}
从此代码导出:错误