행복한 프로그래밍

피보나치 수열

영웅*^%&$ 2018. 2. 2. 09:11
728x90

int Fibonacci (int n=100;)
{
    if(n<=2)
    {
    return 1;
    }
    else
    {
        return Fibonacci(n-1)+Fibonacci(n-2);
        }
}

728x90

'행복한 프로그래밍' 카테고리의 다른 글

고치는 방법  (0) 2018.02.03
java 피보나치   (0) 2018.02.02
I don't know but I am happy   (0) 2018.02.02
왜 실행이 안 될까??   (0) 2018.02.02
new start  (0) 2018.02.02