我有一个像这样的文本文件
Path
827 196
847 195
868 194
889 193
909 191
929 191
951 189
971 186
991 185
1012 185
Path
918 221
927 241
931 261
931 281
930 301
931 321
927 341
923 361
921 382
我正在使用 getline 函数读取文本文件中的每一行,我想将单行中的 2 个数字解析为两个不同的整数变量。到目前为止我的代码是。
int main()
{
vector<string> text_file;
int no_of_paths=0;
ifstream ifs( "ges_t.txt" );
string temp;
while( getline( ifs, temp ) )
{
if (temp2.compare("path") != 0)
{
//Strip temp string and separate the values into integers here.
}
}
}