在我的代码中,我只是分别扫描t,n和m的值。在调试时,我发现无论我给 m 什么值,它都会取值 0。您可以运行此代码进行输入:
1
3 4
在这里,输出应该是 4,但出乎意料的是它是 0。 另一方面,当我在 for 循环之后扫描 n 和 m 的值时,输出按预期出现(即本例中为 4(。我已经注释掉了那行,以便你们可以弄清楚为什么会发生这种情况。
#include <bits/stdc++.h>
using namespace std;
int main()
{
long long t,n,m,i,j;
scanf("%lld",&t); // Scan t (of no use)
while(t--){
scanf("%lld %lld",&n,&m); // If I scan n and m here, the
//output is always 0
long long x[9000],y[9000],ans[9000],in=0;
for(i=1;i<=9000;i++){
ans[i]=0;
x[i]=0;
y[i]=0;
}
//scanf("%lld %lld",&n,&m);//Output is correct if I scan the values here
cout<< m << endl;
}
}
i = 9000
时,您最终将在以下语句中访问越界内存。这会导致未定义的行为。
ans[i]=0;
x[i]=0;
y[i]=0;
经典的"关闭一"错误。 将 for 循环更改为:
for(i=0;i<9000;++i){
ans[i]=0;
x[i]=0;
y[i]=0;
}