Problem | fibo |
---|---|
User | DuckyKayden |
Submission Time | 2025-07-22 07:49:55 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fibo.cpp: In function ‘int32_t main()’:
fibo.cpp:18:15: error: expected ‘;’ before ‘fib’
18 | fib[0] = 0// fib[0] = ...
| ^
| ;
19 | fib[1] = 1// fib[1] = ...
| ~~~
fibo.cpp:21:21: error: ‘i’ was not declared in this scope
21 | for (int i = 2; i <= N; ++i) {
| ^
fibo.cpp:24:28: error: lvalue required as increment operand
24 | for (int i = 0; i <= N; ++1) {
| ^
fibo.cpp: At global scope:
fibo.cpp:40:5: error: expected unqualified-id before ‘return’
40 | return 0;
| ^~~~~~
fibo.cpp:41:1: error: expected declaration before ‘}’ token
41 | }
| ^