Problem fizzbuzz
User Rollsroyce26
Submission Time 2024-06-20 14:46:25
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:13:31: error: expected ‘;’ before ‘}’ token
13 | cout << "Buzz" << '\n'
| ^
| ;
14 | }
| ~
fizzbuzz.cpp:16:13: error: expected ‘;’ before string constant
16 | cout "FizzBuzz" << '\n'
| ^~~~~~~~~~~
| ;
fizzbuzz.cpp:19:19: error: expected ‘;’ before ‘}’ token
19 | cout << ""
| ^
| ;
20 | }
| ~