-1
void addToTextfile()
{
Students stud[20];
Students stdt;
ifstream myFile;
myFile.open("student.txt", fstream::app);
if (myFile.is_open())
{
cout << "\t\t\tStudent KNumber => ";
cin >> stdt.KNumber;
cout << "\t\t\tStudent Name => ";
cin >> stdt.StudentName;
myFile << stdt.KNumber << stdt.StudentName << endl;
}
myFile.close();
}
のgetエラー=>は上書きされ、それが
エラー1エラーC2678せずにテキストファイルにstructur要素を追加しようと何のオペレータがの左側のオペランドをとる見つかりません'std :: ifstream'と入力します(または許容される変換はありません)