正确地缩进了
#include<stdio.h>
int arr[12][5];
int score[12][5];
int n;
void chk(){
int score = 0;
for(int i=n-1;i>=0;i--){
for(int j = 0;j<5;j++){
scanf("%d",&(arr[i][j]));
}
}
for(int i = n-1;i>=0;i--){
for(int j=0;j<5;j++){
if(i==n-1)
score[i][j] = arr[i][j];
else{
int mx = score[i+1][j];
if(j>0 && score[i+1][j-1]>mx)
mx = score[i+1][j-1];
else if(j<4 && score[i+1][j+1]>mx)
mx = score[i+1][j-1];
score[i][j] = arr[i][j] + mx;
}
}
}
int mx_score = score[0][2];
if(score[0][1]>mx_score){
mx_score = score[0][1];
}
else if(score[0][3]>mx_score){
mx_score = score[0][3];
}
printf("%d",mx_score);
}
int main(){
int T;
scanf("%d",&T);
for(int i = 0;i<T;i++){
scanf("%d",&n);
chk(n);
}
return 0;
}
编译错误:
Subscripted value is not an array, pointer or vector.
导致错误的变量为 score
。我不明白为什么arr
工作正常,但是score
不正常。以及如何更好地编写此代码?
我认为
int score[12][5]; void chk() { int score = 0; ...
您重新列出score
;因此,在chk
函数的范围中,score
代表int
不是数组或指针。因此
编译错误:订阅值不是数组,指针或向量。
声明本地变量会隐藏具有相同名称的任何全局变量。如果您需要相同范围内的变量,请给它们不同的名称。