Problem fizzbuzz
User tomatofrog0w0
Submission Time 2023-11-10 13:28:33
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int32_t main()’:
fizzbuzz.cpp:14:10: error: expected ‘;’ before ‘if’
14 | arr[i]++
| ^
| ;
15 |
16 | if (arr[i] % A == 0){
| ~~
fizzbuzz.cpp:20:1: error: ‘else’ without a previous ‘if’
20 | else if (arr[i] % B == 0){
| ^~~~