Problem fibo
User Biologyhater123
Submission Time 2025-02-19 15:54:44
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fibo.cpp: In function ‘int main()’:
fibo.cpp:15:5: error: expected ‘,’ or ‘;’ before ‘int’
15 | int n, f0=0, f1=1;
| ^~~
fibo.cpp:16:11: error: ‘n’ was not declared in this scope
16 | cin >>n;
| ^
fibo.cpp:17:10: error: ‘i’ was not declared in this scope
17 | for (i=0; i<n; i++){
| ^
fibo.cpp:18:14: error: ‘f0’ was not declared in this scope
18 | cout << f0 << '\n';
| ^~
fibo.cpp:19:13: error: ‘f1’ was not declared in this scope
19 | f0= f0+f1;
| ^~