Problem | fizzbuzz |
---|---|
User | ZhangBowen |
Submission Time | 2025-04-13 14:37:22 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:3:18: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
3 | long long N,a,b;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:6:4: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
6 | cout<<"FizzBuzz";
| ^~~~
| 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:8:4: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
8 | cout<<"Fizz";
| ^~~~