Sample – Fibonacci numbers

by Nideesh C on February 8, 2011 · 0 comments

in C++




#include <iostream.h>

// sequence is 0, 1, 1, 2, 3, 5, 8, 13, …

int fib (int i) {
int pred, result, temp;

pred = 1;
result = 0;

while (i > 0) {
temp = pred + result;
result = pred;
pred = temp;
i = i-1;
}
return(result);
}

int main () {
int n;
cout << “Enter a natural number: “;
cin >> n;
while (n < 0) {
cout << “Please re-enter: “;
cin >> n;
}
cout << “fib(” << n << “) = ” << fib(n) << endl;
return(0);
}

Not Satisfied ? Just search & get the result

Related Posts Plugin for WordPress, Blogger...
Be Sociable, Share!

Related posts:

  1. Sample program (multiplication using addition)
  2. Sample – count number of characters and lines in a file

Leave a Comment

Previous post:

Next post: