Problem | fizzbuzz |
---|---|
User | ansel |
Submission Time | 2024-05-17 15:39:51 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:9:20: error: expected ‘;’ before ‘}’ token
9 | cout<<"FizzBuzz"
| ^
| ;
10 | }
| ~
fizzbuzz.cpp:11:3: error: ‘elif’ was not declared in this scope
11 | elif (N%A==0){
| ^~~~
fizzbuzz.cpp:17:3: error: ‘else’ without a previous ‘if’
17 | else{
| ^~~~
fizzbuzz.cpp:18:11: error: expected ‘;’ before ‘}’ token
18 | cout<<i
| ^
| ;
19 | }
| ~