Problem fibo
User bh14
Submission Time 2023-02-24 15:41:14
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fibo.cpp:3:20: error: expected ‘;’ before ‘vector’
3 | using namespace std
| ^
| ;
4 | vector<int> f(10000, -1);
| ~~~~~~
fibo.cpp: In function ‘int fibo(int)’:
fibo.cpp:13:5: error: expected primary-expression before ‘int’
13 | int n; cin >> n;
| ^~~
fibo.cpp:13:5: error: expected ‘}’ before ‘int’
fibo.cpp:12:10: note: to match this ‘{’
12 | int main {
| ^
fibo.cpp: At global scope:
fibo.cpp:18:1: error: expected declaration before ‘}’ token
18 | }
| ^