Problem cuberoot
User YellowPurpleDragon
Submission Time 2025-08-14 08:57:24
Score 0
Max Time N/A
Max Memory N/A

Compile Error

cuberoot.cpp: In function ‘int main()’:
cuberoot.cpp:9:3: error: ‘ll’ was not declared in this scope
9 | ll l=1, h=100000, m=(l+h)/2;
| ^~
cuberoot.cpp:10:10: error: ‘l’ was not declared in this scope
10 | while (l+1<h) {
| ^
cuberoot.cpp:10:14: error: ‘h’ was not declared in this scope
10 | while (l+1<h) {
| ^
cuberoot.cpp:11:4: error: ‘m’ was not declared in this scope
11 | m=(l+h)/2;
| ^
cuberoot.cpp:18:3: error: ‘m’ was not declared in this scope
18 | m=(l+h)/2;
| ^
cuberoot.cpp:18:6: error: ‘l’ was not declared in this scope
18 | m=(l+h)/2;
| ^
cuberoot.cpp:18:8: error: ‘h’ was not declared in this scope
18 | m=(l+h)/2;
| ^