0_0_30060754_3342.cpp: In function 'int max(int, int, int)':
0_0_30060754_3342.cpp:49:5: error: redefinition of 'int max(int, int, int)'
int max(int a,int b,int c)
^
0_0_30060754_3342.cpp:3:5: note: 'int max(int, int, int)' previously defined here
int max(int a,int b,int c)
^
0_0_30060754_3342.cpp: At global scope:
0_0_30060754_3342.cpp:56:10: error: redefinition of 'int a [110]'
int a[110];
^
0_0_30060754_3342.cpp:10:5: note: 'int a [110]' previously declared here
int a[110];
^
0_0_30060754_3342.cpp:57:10: error: redefinition of 'int b [110]'
int b[110];
^
0_0_30060754_3342.cpp:11:5: note: 'int b [110]' previously declared here
int b[110];
^
0_0_30060754_3342.cpp:58:10: error: redefinition of 'int c [110]'
int c[110];
^
0_0_30060754_3342.cpp:12:5: note: 'int c [110]' previously declared here
int c[110];
^
0_0_30060754_3342.cpp:59:17: error: redefinition of 'int dp [15][10005]'
int dp[15][10005];
^
0_0_30060754_3342.cpp:13:5: note: 'int dp [15][10005]' previously declared here
int dp[15][10005];
^
0_0_30060754_3342.cpp: In function 'int main()':
0_0_30060754_3342.cpp:60:5: error: redefinition of 'int main()'
int main()
^
0_0_30060754_3342.cpp:14:5: note: 'int main()' previously defined here
int main()
^
|