Problem fizzbuzz
User matveygebs
Submission Time 2026-03-02 16:41:19
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:2:15: error: ‘cin’ was not declared in this scope
2 | int n, a, b; cin >> n >> a >> b;
| ^~~
fizzbuzz.cpp:8:13: error: ‘cout’ was not declared in this scope
8 | cout<<"FizzBuzz"<<endl;
| ^~~~
fizzbuzz.cpp:8:31: error: ‘endl’ was not declared in this scope
8 | cout<<"FizzBuzz"<<endl;
| ^~~~
fizzbuzz.cpp:12:13: error: ‘cout’ was not declared in this scope
12 | cout<<"Fizz"<<endl;
| ^~~~
fizzbuzz.cpp:12:27: error: ‘endl’ was not declared in this scope
12 | cout<<"Fizz"<<endl;
| ^~~~
fizzbuzz.cpp:16:13: error: ‘cout’ was not declared in this scope
16 | cout<<"Buzz"<<endl;
| ^~~~
fizzbu