Answers for "how to calculate the fibonacci sequence"

1

fibonacci sequence

public class Numbers {
	public static void FibannaciNumbers(int n) {
        int x = 0;
        int y = 1;
        if(n >= 1) {
            System.out.print(x + " ");
        }
        if(n >= 2) {
            System.out.print(y);
        }
        if (n > 2) {
            for(int a = n - 2; a > 0; a--) {
                int z = y + x;
                System.out.print(" " + z);
                x = y;
                y = z;
            }
        }
    }
}
Posted by: Guest on August-23-2021
1

fibonacci sequence

public class Numbers {
	public static void FibannaciNumbers(int n) {
        int x = 0;
        int y = 1;
        if(n >= 1) {
            System.out.print(x + " ");
        }
        if(n >= 2) {
            System.out.print(y);
        }
        if (n > 2) {
            for(int a = n - 2; a > 0; a--) {
                int z = y + x;
                System.out.print(" " + z);
                x = y;
                y = z;
            }
        }
    }
}
Posted by: Guest on August-23-2021
0

fibonacci sequence

// Copy paste code here https://play.golang.org/
package main 

import "fmt"

func fibo(n int) int {
	x, y := 0, 1
	for i := 0; i < n; i++ {
		x, y = y, x+y
	}
	return x
}

func main() { fmt.Println(fibo(5)) } // return 5
Posted by: Guest on July-22-2021
0

fibonacci sequence

// Copy paste code here https://play.golang.org/
package main 

import "fmt"

func fibo(n int) int {
	x, y := 0, 1
	for i := 0; i < n; i++ {
		x, y = y, x+y
	}
	return x
}

func main() { fmt.Println(fibo(5)) } // return 5
Posted by: Guest on July-22-2021
0

fibonacci sequence

//x is the index number in the fibonnacci sequence. 
//The function will return that index's fibonacci value
function fib(x) {
    let a = 0;
    let b = 1;
    for (var i = 0; i < x-1; i++) {
        let c = b;
        b += a;
        a = c;
    }
    return b;
}
Posted by: Guest on August-24-2021
0

fibonacci sequence

//x is the index number in the fibonnacci sequence. 
//The function will return that index's fibonacci value
function fib(x) {
    let a = 0;
    let b = 1;
    for (var i = 0; i < x-1; i++) {
        let c = b;
        b += a;
        a = c;
    }
    return b;
}
Posted by: Guest on August-24-2021
1

fibonacci sequence

int n ; 
double feb  = (1/Math.pow(5,0.5)) * (Math.pow((1+Math.pow(5,0.5))/2,n)) - (1/Math.pow(5,0.5))* (Math.pow((1-Math.pow(5,0.5))/2,n));
Posted by: Guest on August-01-2021
1

fibonacci sequence

int n ; 
double feb  = (1/Math.pow(5,0.5)) * (Math.pow((1+Math.pow(5,0.5))/2,n)) - (1/Math.pow(5,0.5))* (Math.pow((1-Math.pow(5,0.5))/2,n));
Posted by: Guest on August-01-2021

Code answers related to "how to calculate the fibonacci sequence"

Python Answers by Framework

Browse Popular Code Answers by Language