14 lines
260 B
C++
14 lines
260 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
const int N = 40;
|
|
int a[N] = {0, 1, 1};
|
|
|
|
int main() {
|
|
for (int i = 3; i < N; i++)
|
|
a[i] = a[i - 1] + a[i - 2];
|
|
|
|
for (int i = 1; i < N; i++)
|
|
printf("%d\n", a[i]);
|
|
return 0;
|
|
} |