暂时坚持了一段时间,我有一个包含16行和3列的.dat文件。
ex:Andrew 9 12
我需要存储玩家的名字,玩家编号以及如上所示得分。
C ++ btw。
答案 0 :(得分:0)
//包括fstream和string
您的常规ifstream将为您提供良好的服务。
string playerName;
int playerScore;
int playerPoints;
openedInFile>>playerName>>playerScore>>playerPoints;
// loop for next row
适当存储。