Problem fizzbuzz
User yikai
Submission Time 2026-02-20 16:35:30
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:6:19: error: expected ‘;’ before ‘<=’ token
6 | for (int i = 0, i <=N, i++){
| ^~~
| ;
fizzbuzz.cpp:6:20: error: expected primary-expression before ‘<=’ token
6 | for (int i = 0, i <=N, i++){
| ^~
fizzbuzz.cpp:6:28: error: expected ‘;’ before ‘)’ token
6 | for (int i = 0, i <=N, i++){
| ^
| ;
fizzbuzz.cpp:17:2: error: expected ‘}’ at end of input
17 | }
| ^
fizzbuzz.cpp:3:11: note: to match this ‘{’
3 | int main(){
| ^