Problem fizzbuzz
User Sky
Submission Time 2025-06-16 16:37:27
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:10:22: error: expected ‘;’ before ‘}’ token
10 | cout << "FizzBuzz"
| ^
| ;
11 | }else if (N % B == 0ll) {
| ~
fizzbuzz.cpp:12:18: error: expected ‘;’ before ‘}’ token
12 | cout << "Fizz"
| ^
| ;
13 | }else if (N % A == 0ll) {
| ~
fizzbuzz.cpp:14:18: error: expected ‘;’ before ‘}’ token
14 | cout << "Buzz"
| ^
| ;
15 | }else{
| ~