| Problem | fibo |
|---|---|
| User | Chris |
| Submission Time | 2024-11-18 10:05:56 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fibo.cpp:3:5: error: expected unqualified-id before ‘if’
3 | if (n == 0) return 0;
| ^~
fibo.cpp:4:5: error: expected unqualified-id before ‘if’
4 | if (n == 1) return 1;
| ^~
fibo.cpp:5:12: error: ISO C++ forbids declaration of ‘f’ with no type [-fpermissive]
5 | f(int n){
| ^