Problem catlunch
User beefburger
Submission Time 2026-02-19 09:25:30
Score 0
Max Time N/A
Max Memory N/A

Compile Error

catlunch.cpp: In function ‘int main()’:
catlunch.cpp:13:12: error: redeclaration of ‘int res’
13 | int cmax, res;
| ^~~
catlunch.cpp:6:12: note: ‘int res’ previously declared here
6 | int n, k, res=0, temp;
| ^~~
catlunch.cpp:14:16: error: expected ‘;’ before ‘for’
14 | cmax = res = 0
| ^
| ;
15 | for (int i=1; i<n; i++){
| ~~~
catlunch.cpp:15:16: error: ‘i’ was not declared in this scope
15 | for (int i=1; i<n; i++){
| ^
catlunch.cpp:26:1: error: expected ‘}’ at end of input
26 | }
| ^
catlunch.cpp:5:11: note: to match this ‘{’
5 | int main(){
| ^