Problem lunchbox
User YH
Submission Time 2024-02-03 17:50:22
Score 0
Max Time N/A
Max Memory N/A

Compile Error

lunchbox.cpp: In function ‘int main()’:
lunchbox.cpp:23:19: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
23 | if (smallest > k) {
| ^
lunchbox.cpp:24:16: error: invalid conversion from ‘int*’ to ‘int’ [-fpermissive]
24 | smallest = k
| ^
| |
| int*
lunchbox.cpp:24:17: error: expected ‘;’ before ‘}’ token
24 | smallest = k
| ^
| ;
25 | }
| ~