Problem | fizzbuzz |
---|---|
User | jh2865 |
Submission Time | 2025-06-16 17:09:23 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp:1:24: error: missing terminating > character
1 | #include <bits/stdc++.h
| ^
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:6:18: error: expected primary-expression before ‘<’ token
6 | for (int i = 0; <N; i++){
| ^
fizzbuzz.cpp:18:17: error: expected ‘;’ before ‘}’ token
18 | cout << "i\n"
| ^
| ;
19 | }
| ~
fizzbuzz.cpp:20:3: error: expected ‘}’ at end of input
20 | }
| ^
fizzbuzz.cpp:3:11: note: to match this ‘{’
3 | int main(){
| ^