Total members 11890 |It is currently Tue Apr 23, 2024 2:36 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





solving fibonacci sequence recursively using C++ implementation
cpp code
#include <iostream>
#include <iomanip>
using namespace std;

//function declaration
double fibonacci(unsigned int n);

int main()
{
int n;

cout << "Enter a number: ";
cin >> n;

//An 'If' condition to prevent the user from entering -ve integers
if (n<0)
cout << "Please Enter a positive integer!" << endl;
else
cout << "The fibonacci number is " << fibonacci(n) << endl;

cout << "The fibonacci sequence is as follows:" << endl;

//Print Table Heading
cout << setw(10) << "n" << setw(10) << " | " << setw(10) << "F(n)" << endl;
cout << "-----------------------------------------" << endl;

//A Loop to print fibonacci numbers until 'n' in a tabular form
for(int i=0;i<=n;i++)
cout << setw(10) << i << setw(10) << " | " << setw(10) << fibonacci(i) << endl;

return 0;
}

//function definition
double fibonacci(unsigned int n)
{
//See what 'n' is
switch(n)
{
//If n=0 F(n)=0
case 0:
return 0;
break;

//if n=1 F(n)=1
case 1:
return 1;
break;

//Otherwise solve recursively
default:
return fibonacci(n-1)+fibonacci(n-2);
break;
}
}




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : solving fibonacci sequence recursively
 Implementing fibonacci sequence problem using iterations     -  
 recursively calculating factorial     -  
 Merge two or more arrays recursively     -  
 Fibonacci iterative     -  
 Fibonacci vs factorial     -  
 Solving the Tower of Hanoi problem using C++     -  
 Sequence Generator JPA     -  
 add sequence of decimal numbers     -  
 simple Ajax library solving back button and bookmarks     -  
 solving dojox/mobile/Heading moveTo function bug issue     -  



cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com