Problem democracy
User thatlycheeoolongdrink
Submission Time 2024-06-26 08:46:16
Score 0
Max Time N/A
Max Memory N/A

Compile Error

democracy.cpp: In function ‘int main()’:
democracy.cpp:5:5: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
5 | cin >> n;
| ^~~
| std::cin
In file included from democracy.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
democracy.cpp:24:5: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
24 | cout << r << endl;
| ^~~~
| std::cout
In file included from democracy.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~
democracy.cpp:24:18: error: ‘endl’ was not declared in this scope; did you mean ‘std::endl’?
24 | cout << r << endl;
| ^~~~
|