0_0_23696017_7208.cpp:9:25: error: size of array 'change' is too large
double change[MAXN][MAXN];
^
0_0_23696017_7208.cpp:13:33: error: size of array 'dis' is too large
void floyed(typec dis[MAXN][MAXN],int n)
^
0_0_23696017_7208.cpp: In function 'void floyed(int)':
0_0_23696017_7208.cpp:22:20: error: 'dis' was not declared in this scope
if(dis[i][j]<dis[i][k]*dis[k][j])
^
0_0_23696017_7208.cpp: In function 'int main()':
0_0_23696017_7208.cpp:52:26: error: 'change' was not declared in this scope
if(i==j) change[i][j]=1;
^
0_0_23696017_7208.cpp:53:22: error: 'change' was not declared in this scope
else change[i][j]=0;
^
0_0_23696017_7208.cpp:61:13: error: 'change' was not declared in this scope
change[name[ci]][name[cj]]=r;
^
0_0_23696017_7208.cpp:64:16: error: 'change' was not declared in this scope
floyed(change,n);
^
|