跳过文件读取中的某些行

时间:2019-11-06 13:18:33

标签: c++

我想将2列文件中的2列放入对象中进行数学运算。我如何简单地对计算机说:“嘿,不要从文件的第一行开始进行数学运算,而要进行数学运算在具有井号标签的行之后”。我在下面有一个文件示例:

enter image description here

1 个答案:

答案 0 :(得分:0)

读取第一行并忽略它。阅读其他行并进行处理:

using std::getline;
using std::string;
using std::ifstream;

string line;
ifstream file("FILENAME");
getline(file, line);
while(getline(file, line)) {
    process(line);
}