diff --git a/fibonacci.cpp b/fibonacci.cpp new file mode 100644 index 0000000..64f249e --- /dev/null +++ b/fibonacci.cpp @@ -0,0 +1,17 @@ +#include +using namespace std; + +int main(){ + int num1=0,num2=1,num3,i,n; + cout<<"\nEnter the number of elements of Fibonacci Series : "; + cin>>n; + cout<