Problem fizzbuzz
User Biologyhater123
Submission Time 2025-02-16 20:51:37
Score 0
Max Time N/A
Max Memory N/A

Compile Error

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