gpt4 book ai didi

c++ - 使用 C++ 流从文本文件中读取数字

转载 作者:太空狗 更新时间:2023-10-29 20:01:08 25 4
gpt4 key购买 nike

我有一个像下面这样的文本文件

2 1 2
5 10 13 11 12 14
2 0 1
2 99 2
200 2
1 5
5 1 2 3 4 5
1 0
0 0

我想逐行读取文件,并从每一行读取数字。我知道如何使用流读取固定字段行,但是非固定行呢?

最好的问候,

最佳答案

使用字符串流。概述:

string line;
while( getline( cin, line ) ) { // read each line:
istringstream is( line );
int n;
while( is >> n ) { // read each number in line
// do something with each number:
}
}

关于c++ - 使用 C++ 流从文本文件中读取数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3031491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com