Problem maximum
User prasanaa
Submission Time 2023-12-24 17:52:30
Score 0
Max Time N/A
Max Memory N/A

Compile Error

maximum.cpp: In function ‘int main()’:
maximum.cpp:8:14: error: ‘max’ was not declared in this scope; did you mean ‘std::max’?
8 | std::cout<< max(a,b);
| ^~~
| std::max
In file included from /usr/include/c++/9/bits/char_traits.h:39,
from /usr/include/c++/9/ios:40,
from /usr/include/c++/9/ostream:38,
from /usr/include/c++/9/iostream:39,
from maximum.cpp:1:
/usr/include/c++/9/bits/stl_algobase.h:268:5: note: ‘std::max’ declared here
268 | max(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~