Problem fibo
User R9q5P8
Submission Time 2025-03-14 13:50:23
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fibo.cpp: In function ‘int fibo(int)’:
fibo.cpp:10:29: error: expected ‘;’ before ‘}’ token
10 | return fibo(n-1)+fibo(n-2)
| ^
| ;
11 | }
| ~
fibo.cpp:13:1: error: a function-definition is not allowed here before ‘{’ token
13 | {
| ^
fibo.cpp:20:1: error: expected ‘}’ at end of input
20 | }
| ^
fibo.cpp:5:1: note: to match this ‘{’
5 | {
| ^