From a8cd70fb1d350d201f77f170db37bc4e44906985 Mon Sep 17 00:00:00 2001 From: aashish1772 <43958591+aashish1772@users.noreply.github.com> Date: Sun, 20 Oct 2019 17:17:00 +0530 Subject: [PATCH] Create fibonacci.cpp --- C++/fibonacci.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 C++/fibonacci.cpp diff --git a/C++/fibonacci.cpp b/C++/fibonacci.cpp new file mode 100644 index 0000000..cf43163 --- /dev/null +++ b/C++/fibonacci.cpp @@ -0,0 +1,16 @@ +#include +using namespace std; +int main{ + int number,n1= 0,n2 =1,i; + cout<<"Enter the no. of elements"; + cin>>number; + cout<