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

Compile Error

maximum.cpp: In function ‘int main()’:
maximum.cpp:8:2: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
8 | cout<< max(a,b);
| ^~~~
| std::cout
In file included from maximum.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~
maximum.cpp:8:9: error: ‘max’ was not declared in this scope; did you mean ‘std::max’?
8 | 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