Problem | fizzbuzz |
---|---|
User | noob41 |
Submission Time | 2023-11-08 11:27:48 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int32_t main()’:
fizzbuzz.cpp:8:6: error: ‘i’ was not declared in this scope
8 | for(i=0;i<=N;i++){
| ^
fizzbuzz.cpp:10:16: error: expected ‘;’ before ‘}’ token
10 | cout<<"Fizz"
| ^
| ;
11 | }
| ~
fizzbuzz.cpp:13:16: error: expected ‘;’ before ‘}’ token
13 | cout<<"Buzz"
| ^
| ;
14 | }
| ~
fizzbuzz.cpp:16:20: error: expected ‘;’ before ‘}’ token
16 | cout<<"FizzBuzz"
| ^
| ;
17 | }
| ~
fizzbuzz.cpp:22:1: error: expected ‘}’ at end of input
22 | }
| ^
fizzbuzz.cpp:5:15: note: to match this ‘{’
5 | int32_t main(){
| ^