| Problem | fizzbuzz |
|---|---|
| User | zhaoyz |
| Submission Time | 2026-06-22 16:35:33 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:10:2: error: ‘else’ without a previous ‘if’
10 | else if (i%a ==0) cout<< "Fizz"<<'\n';
| ^~~~
fizzbuzz.cpp:12:29: error: expected ‘;’ before ‘cout’
12 | else (i%a !=0 and i%b != 0) cout<<i;
| ^~~~~
| ;