Problem | maximum |
---|---|
User | Xiwen |
Submission Time | 2025-03-29 07:19:23 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
maximum.cpp: In function ‘int main()’:
maximum.cpp:6:10: error: ‘input’ was not declared in this scope
6 | int a = input();
| ^~~~~
maximum.cpp:9:15: error: ‘max’ was not declared in this scope; did you mean ‘std::max’?
9 | std::cout << max(a, b) << std::endl;
| ^~~
| std::max
In file included from /usr/include/c++/9/algorithm:62,
from maximum.cpp:1:
/usr/include/c++/9/bits/stl_algo.h:3468:5: note: ‘std::max’ declared here
3468 | max(initializer_list<_Tp> __l, _Compare __comp)
| ^~~