The Fibonacci sequence of the garlic guest

Source: Internet
Author: User



The Fibonacci sequence is a very interesting sequence, starting with 0 and 1, after which the Fibonacci Fibonacci coefficients are added by the previous two numbers. The Fibonacci sequence is defined by a mathematical formula as follows:



F0=0



F1=1



Fn=fn-1+fn-2



We agree that Fn represents the nth of the Fibonacci sequence, can you tell any of the Fibonacci sequences?



The input includes a row, including a number N (0≤N≤50).



The output includes a row, including a number, which is the value of the nth item of the Fibonacci sequence.


Sample Input7Sample Output -





The C + + implementation code is as follows:


#include <iostream> using namespace std; int f(int i); int main()
{ int N;
    cin>>N;
    cout<<f(N)<<endl; return 0;
} int f(int i)
{ if (i==0)
    { return 0;
    } else if (i==1)
    { return 1;
    } else { return f(i-1)+f(i-2);
    }
}





The Fibonacci sequence of the garlic guest


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.