Enter Keywords:
1 - 10 of 33(0.007 seconds)
Sort By:
 
Hi, I did not major in CS, so when I came accross a case where I needed to compute a Fibonacci sequence using modulo 65536 arithmetic to avoid integer overflow, I kindda scratched my head. I ha...
Zones: C++Date Answered: 02/12/2003 Rating: 6.2 Views: 0
I am going to write a program that calculate and return Fibonacci numbers, any idea on it?
Zones: C++Date Answered: 10/29/2003 Rating: 6.6 Views: 0
I'm trying to calculate the Fibonacci sequence based upon user input. I need to call my recursiveFib() and compute the also the clock cycles. Here is what I have so far, but its not quite right. ...
Zones: C++Date Answered: 11/06/2004 Rating: 8.2 Views: 0
Hi ,  I have the fibonacci function like this:   long Fib(int n)  {         if ( n == 0)            return 0;      else if ( n ==1 || n ==2)           return 1;     else return  Fib(n-1) +...
Zones: CDate Answered: 05/30/2006 Rating: 7.8 Views: 0
I am working on a simple program to display the Fibonacci number after a user inputs the number they want to test. Here is my code. #include <iostream> #include <iomanip> #include <cmath> ...
Zones: C++Date Answered: 06/27/2006 Rating: 8.4 Views: 0
How do I input an Array in to this program: TITLE Fibonacci squence INCLUDE Irvine32.inc .data Fibo  DWORD 100 dup (0)         ; <-----s this my ARRAY .code main PROC mov edx,offset fibo           ; M...
Zones: AssemblyDate Answered: 03/07/2007 Rating: 7.6 Views: 0
How do you write a code in LC-3 dealing with Fibonacci numbers. I already have a code for basic but I need to translate it into LC-3. Is there anyone who can help me please?!?!?  I have never dealt...
Zones: ProgrammingDate Answered: 10/30/2007 Rating: 7.8 Views: 4
The Fibonacci sequence is 1,1,2,3,5,8,13,21....where the current term is the sum of the two prior terms. So the 7th Fibonacci number would be 13. My task is to write two programs to find the desir...
Zones: PascalDate Answered: 02/03/1998 Rating: 8.0 Views: 0
I writing this fibonacci sequence eg. first 8 numbers are: 1, 1, 2, 3, 5, 8, 13, 21.  how would i do that. ( this is not a homework or things like that. i saw this from my friends's exercise book a...
Zones: CDate Answered: 07/09/1999 Rating: 8.2 Views: 0
Does anyone know a good site to learn what a fibonacci tree is?  Or an explanation? I know trees, I've just never read about fibonacci trees.
Zones: ProgrammingDate Answered: 05/02/2000 Rating: 7.6 Views: 0