求助~为什么不能从文件读入信息
c++吧
全部回复
仅看楼主
level 1
低下_头颅 楼主
string name;
int num;
float Score;
fstream file;
file.open("StudentData.txt",ios::in);
while (!file.eof()){
file >> name;
file >> num;
file >> Score;

2015年12月01日 12点12分 1
1