Problem fizzbuzz
User 93541JJ
Submission Time 2026-06-22 16:25:03
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:5:1: error: ‘cin’ was not declared in this scope
5 | cin >> a >> b >> n;
| ^~~
fizzbuzz.cpp:8:3: error: ‘cout’ was not declared in this scope
8 | cout << "fizz" << "\n";
| ^~~~
fizzbuzz.cpp:10:3: error: ‘cout’ was not declared in this scope
10 | cout << "buzz" << "\n";
| ^~~~
fizzbuzz.cpp:12:3: error: ‘cout’ was not declared in this scope
12 | cout << "fizzbuzz" << "\n";
| ^~~~
fizzbuzz.cpp:16:1: error: expected ‘}’ at end of input
16 | }
| ^
fizzbuzz.cpp:1:15: note: to match this ‘{’
1 | signed main() {
| ^