Problem fizzbuzz
User xyzidk9
Submission Time 2026-02-14 10:46:23
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:8:22: error: expected ‘;’ before ‘}’ token
8 | cout << "FizzBuzz"
| ^
| ;
9 | }
| ~
fizzbuzz.cpp:11:18: error: expected ‘;’ before ‘}’ token
11 | cout << "Fizz"
| ^
| ;
12 | }
| ~
fizzbuzz.cpp:14:18: error: expected ‘;’ before ‘}’ token
14 | cout << "Buzz"
| ^
| ;
15 | }
| ~