我正在制作算法,我需要在c ++中读取整行的整数
我的输入文件是:
//////
五
6 3 4 2 5
//////
我想阅读第二行并逐一取整数
我不想将整数带到变量,因为我有一个内存限制(64 mb的ram)
我想直接从文件中取整数
有没有办法在c ++(而不是c)中做到这一点
我试过这个
fstream file;
file.open("file.txt");
int a;
file >> a;
但有了这个,我可以让它只读“5”,如果我使用像“getline();”我不能得到每个整数,因为我想要 感谢
答案 0 :(得分:1)
你没有 将每个整数保存在自己的变量中,只需重复使用同一个
fstream file("file.txt");
int a;
while (file >> a) {
// Do your stuff with "a"
}
要跳过第一个数字(根据下面的问题),一种简单的方法是读取并丢弃整数:
fstream file("file.txt");
int a;
file >> a; // Do nothing with a → Discard the first value
while (file >> a) {
// Do your stuff with "a"
}