Problem | fizzbuzz |
---|---|
User | dqmnig |
Submission Time | 2024-06-26 16:33:38 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:11:3: error: expected primary-expression before ‘if’
11 | if (i % A == 0 && i % B == 0)
| ^~
fizzbuzz.cpp:10:3: error: expected ‘)’ before ‘if’
10 | (
| ~^
| )
11 | if (i % A == 0 && i % B == 0)
| ~~
fizzbuzz.cpp:13:3: error: ‘else’ without a previous ‘if’
13 | else if (i % A == 0)
| ^~~~
fizzbuzz.cpp:13:12: error: ‘i’ was not declared in this scope
13 | else if (i % A == 0)
| ^
fizzbuzz.cpp:19:2: error: expected primary-expression before ‘)’ token
19 | )
| ^