Problem fizzbuzz
User JoonLoong
Submission Time 2026-06-22 16:37:05
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:9:22: error: expected ‘;’ before ‘}’ token
9 | cout << "FizzBuzz"
| ^
| ;
10 | }
| ~
fizzbuzz.cpp:12:18: error: expected ‘;’ before ‘}’ token
12 | cout << "Fizz"
| ^
| ;
13 | }
| ~
fizzbuzz.cpp:15:18: error: expected ‘;’ before ‘}’ token
15 | cout << "Buzz"
| ^
| ;
16 | }
| ~
fizzbuzz.cpp:18:16: error: expected ‘;’ before ‘}’ token
18 | cout << "\n"
| ^
| ;
19 | }
| ~
fizzbuzz.cpp:20:2: error: expected ‘}’ at end of input
20 | }
| ^
fizzbuzz.cpp:4:16: note: to match this ‘{’
4 | signed