From 7517b361642880607bc5fe48ed986b65762fa482 Mon Sep 17 00:00:00 2001 From: Abhay mishra <64887986+mabhay3420@users.noreply.github.com> Date: Sun, 4 Oct 2020 10:29:01 +0530 Subject: [PATCH] Improve the output message of the program Instead of fibonacci series output first n terms of fibonacci series for a more accurate mathematical statement. --- CPP/CPP_fibonacci.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CPP/CPP_fibonacci.cpp b/CPP/CPP_fibonacci.cpp index 2526112..b3aabdb 100644 --- a/CPP/CPP_fibonacci.cpp +++ b/CPP/CPP_fibonacci.cpp @@ -7,7 +7,7 @@ first=0; second=1; cout<<"Enter number of terms for Series: "; cin>>no; -cout<<"Fibonacci series are: \n"; +cout<<"The first " << no<<" terms of fibonacci series are: \n"; for(i=0; i