コードに問題があります。このコードでファイルを開くことができないのはなぜですか? ありがとう
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);
}
このコードからのエクスポート: エラー