/run c

#include

int main(void)

{

int n;

int f0, f1, f2;

f0 = 0;

f1 = 1;

printf("%d\n", f0);

while(f1<100000) {

printf("%d\n", f1);

f2 = f1 + f0;

f0 = f1;

f1 = f2;

}

return 0;

}

Reply to this note

Please Login to reply.

Discussion

0

1

1

2

3

5

8

13

21

34

55

89

144

233

377

610

987

1597

2584

4181

6765

10946

17711

28657

46368

75025