问题遇到的现象和发生背景
使用循环语句中,inti;i++;其中i增加到1000,不继续增加了,这种情况是什么原因,如何修改
问题相关代码,请勿粘贴截图
int i = 0;
while (1)
{
if (oifs.eof())break;
oifs.getline(str, 500);
if (strstr(str, "/ ") != NULL)
{
sscanf(str, "/%d %d %lf", &(epoch[i].hour), &(epoch[i].min), &(epoch[i].sec));
cout << "" << epoch[i].hour <<" "<< epoch[i].min << " " << epoch[i].sec<< "" << endl;
}
i++;
}