文件正常打开,但识别特定行数的数据出错,想读取“+”所在行的数据,但没有成功
while (!ifs.eof())//while (1)
{
ifs.getline(line, 100);
int count=0;
if (strstr(line, "+") != NULL)
sscanf(line, "+ %d",
&count);
cout << count << endl;
break;
}
加号确定是起始字符码?