0_0_22452888_17550.cpp:7:1: error: expected unqualified-id before '<' token
<p STYLE="Line-HeiGHT: 1.15pt; MArGin-Top: 0pt; MArGin-BoTToM: 0pt">
^
0_0_22452888_17550.cpp: In function 'int main()':
0_0_22452888_17550.cpp:37:13: error: 'fee' was not declared in this scope
scanf("%d",&fee[i][j]) ;
^
0_0_22452888_17550.cpp:49:1: error: 'dp' was not declared in this scope
dp[1][j] = fee[1][j] ;
^
0_0_22452888_17550.cpp:49:12: error: 'fee' was not declared in this scope
dp[1][j] = fee[1][j] ;
^
0_0_22452888_17550.cpp:67:1: error: 'dp' was not declared in this scope
dp[i][j] = fee[i][j] + dp[i-1][j] ;
^
0_0_22452888_17550.cpp:67:12: error: 'fee' was not declared in this scope
dp[i][j] = fee[i][j] + dp[i-1][j] ;
^
0_0_22452888_17550.cpp:82:5: error: 'dp' was not declared in this scope
if (dp[i][j]>dp[i][j-1] + fee[i][j]){
^
0_0_22452888_17550.cpp:82:27: error: 'fee' was not declared in this scope
if (dp[i][j]>dp[i][j-1] + fee[i][j]){
^
0_0_22452888_17550.cpp:103:5: error: 'dp' was not declared in this scope
if (dp[i][j]>dp[i][j+1] + fee[i][j]){
^
0_0_22452888_17550.cpp:103:27: error: 'fee' was not declared in this scope
if (dp[i][j]>dp[i][j+1] + fee[i][j]){
^
0_0_22452888_17550.cpp:124:10: error: 'dp' was not declared in this scope
int temp=dp[m][1],tempx = 1 ;
^
0_0_22452888_17550.cpp:136:1: error: 'tempx' was not declared in this scope
tempx = j ;
^
0_0_22452888_17550.cpp:154:1: error: 'ans' was not declared in this scope
ans[end++] = tempx ;
^
0_0_22452888_17550.cpp:154:14: error: 'tempx' was not declared in this scope
ans[end++] = tempx ;
^
0_0_22452888_17550.cpp:172:16: error: 'ans' was not declared in this scope
printf ("%d\n",ans[end]) ;
^
|