| Problem | fibo |
|---|---|
| User | AaravRastogi |
| Submission Time | 2025-12-19 15:54:54 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fibo.cpp:1:1: error: stray ‘##’ in program
1 | ##include <bits/stdc++.h>
| ^~
fibo.cpp:1:3: error: ‘include’ does not name a type
1 | ##include <bits/stdc++.h>
| ^~~~~~~
fibo.cpp: In function ‘int main()’:
fibo.cpp:7:13: error: ‘cin’ was not declared in this scope
7 | int n ; cin >> n ;
| ^~~
fibo.cpp:9:5: error: ‘vector’ was not declared in this scope
9 | vector<int> f(n+1);
| ^~~~~~
fibo.cpp:3:13: error: expected primary-expression before ‘long’
3 | #define int long long
| ^~~~
fibo.cpp:9:12: note: in expansion of macro ‘int’
9 | vector<int> f(n+1);
| ^~~
fibo.cpp:10:5: error: ‘f’ was not declared in this scope
10 | f[0] = 0 ; f[1] = 1;
| ^
fibo.cpp:15:20: error: ‘cout’ was not declared in this scope
15 | for (int A: f){cout << A;}
|