0_0_17265718_26035.cpp:5:1: error: stray '\243' in program
const int INF=99999999£»
^
0_0_17265718_26035.cpp:5:1: error: stray '\273' in program
0_0_17265718_26035.cpp:6:1: error: expected ',' or ';' before 'const'
const int N=110;
^
0_0_17265718_26035.cpp:7:9: error: 'N' was not declared in this scope
int map[N][N];
^
0_0_17265718_26035.cpp:7:12: error: 'N' was not declared in this scope
int map[N][N];
^
0_0_17265718_26035.cpp: In function 'void floyd()':
0_0_17265718_26035.cpp:17:21: error: 'map' was not declared in this scope
map[i][j]=min(map[i][j],map[i][k]+map[k][j]);
^
0_0_17265718_26035.cpp: In function 'int main()':
0_0_17265718_26035.cpp:25:26: error: 'map' was not declared in this scope
if(i==j) map[i][j]=0;
^
0_0_17265718_26035.cpp:26:22: error: 'map' was not declared in this scope
else map[i][j]=INF;
^
0_0_17265718_26035.cpp:31:13: error: 'map' was not declared in this scope
map[a][b]=map[b][a]=c;
^
0_0_17265718_26035.cpp:34:15: error: 'map' was not declared in this scope
cout<<map[1][n]<<endl;
^
|