gpt4 book ai didi

c++ - scanf() 为最后一行输入提供错误的输出

转载 作者:行者123 更新时间:2023-11-28 07:54:55 25 4
gpt4 key购买 nike

我正在使用 scanf 获取图表的输入。输入如下:

8
1 2
3 3 5 6
2 4 7
2 3 8
2 1 5
1 7
2 6 4
0

第一个整数(8)是顶点数,后面是8行。每个中的第一个整数是从第一行中的顶点 1 到第二行中的顶点 2 等等的出边数。

我写的函数如下:

void getInput() {
//init();
int numVertex; int numTest;

scanf("%d", &numVertex);
for(int i =1 ; i <= numVertex;i++) {
int ver,nC; vector<int> vList;
//fscanf(file,"%d", &ver);
scanf("%d", &nC);

for(int j=0;j<nC;j++) {
int temp ;
scanf("%d", &temp);
vList.push_back(temp);

}
props pr = {-1,-1 , vList};
graph.insert(make_pair(i, pr) );
}
}

但是,我输入的最后一行的输出变得很奇怪,它基本上重复了上一行的最后一位数字多次。对于上述输入,我得到的输出:

1 : 2
2 : 3 5 6
3 : 4 7
4 : 3 8
5 : 1 5
6 : 7
7 : 6 4
8 : 4 4 // this is where it should give nothing

谁能告诉我这里出了什么问题?当我转换为通过文件获取输入时,完全相同的转换序列为我提供了正确的输出。

有人可以指出任何错误吗?

最佳答案

这样做:

if (scanf("%d", &nC) != EOF) {

for(int j=0;j<nC;j++) {
int temp ;
scanf("%d", &temp);
vList.push_back(temp);

}
props pr = {-1,-1 , vList};
graph.insert(make_pair(i, pr) );
}

这将检查读取是否成功。最后一行输入的重复是一个众所周知的问题,它的发生是因为最后一次读取尝试失败(因为已到达文件末尾)并且 scanf 返回与之前调用相同的结果。

关于c++ - scanf() 为最后一行输入提供错误的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12886290/

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