Problem | fibo |
---|---|
User | AJigglypuffCoder |
Submission Time | 2024-10-23 15:40:55 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fibo.cpp:5:22: error: expected initializer before ‘:’ token
5 | int previous_previous:
| ^
fibo.cpp: In function ‘int main()’:
fibo.cpp:14:4: error: ‘previous_previous’ was not declared in this scope
14 | previous_previous = 0;
| ^~~~~~~~~~~~~~~~~
fibo.cpp:17:4: error: ‘previous’ was not declared in this scope
17 | previous = 1;
| ^~~~~~~~
fibo.cpp:20:18: error: ‘previous_previous’ was not declared in this scope
20 | current_tmp = previous_previous+previous;
| ^~~~~~~~~~~~~~~~~
fibo.cpp:20:36: error: ‘previous’ was not declared in this scope
20 | current_tmp = previous_previous+previous;
| ^~~~~~~~