65,211
社区成员
发帖
与我相关
我的任务
分享
std::ifstream ifs("wenben.txt");
if (!ifs)
return;
int matchCount;
ifs>>matchCount;
for (int i = 0; i < matchCount; i ++)
{
int scoreCount;
ifs>>scoreCount;
for(int j = 0; j < scoreCount; j ++)
{
int aScore;
ifs>>aScore;
}
}