Skip to content
This repository was archived by the owner on Nov 26, 2019. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Fibonacci Series

It is a series which proceeds by cumulative addition of consecutive terms ##0 1 1 2 3 5 8 13 ...

Input Format

First line contains the number of terms you want to have in hte series.

Output Format

The terms are displayed in every new line

Sample Input

Enter no of times 5

Sample Output

0
1
1
2
3

Implemented in: