怎样跳过一行nth-of-type
发布网友
发布时间:2022-04-26 23:47
我来回答
共1个回答
热心网友
时间:2022-06-20 09:59
<pre t="code" l="cpp">#include <fstream>
#include <stdio.h>
using namespace std;
int main()
{
ifstream file("D:\\a.cpp");
if (!file.is_open()) {
return 0;
}
int nSkipCnt = 7;
char szBuf[200];
for (int i=0; i<nSkipCnt; ++i) {
file.getline(szBuf, sizeof(szBuf));
}
//其他操作
file.close();
return 0;
}使用ifstream直接解决。