| Problem | fizzbuzz |
|---|---|
| User | toditisdoingthisforfun |
| Submission Time | 2026-01-04 14:19:13 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:14:6: error: expected ‘while’ before ‘(’ token
14 | if (i % A == 0 && i % B == 0)
| ^
fizzbuzz.cpp:14:32: error: expected ‘;’ before ‘{’ token
14 | if (i % A == 0 && i % B == 0)
| ^
| ;
15 | {
| ~
fizzbuzz.cpp:18:3: error: ‘else’ without a previous ‘if’
18 | else if (i % A == 0)
| ^~~~