No recursive method is used to implement the Fibonacci sequence, and the input number n will output the nth number of the sequence.

Source: Internet
Author: User

#include <stdio.h>
int main ()
{
int a = 0;
int b = 0;
scanf ("%d", &a);
b = fib (a);
printf ("%d\n", b);
System ("pause");
return 0;
}

int fib (int n)
{
int NUM1 = 1;
int num2 = 1;
int num3 = 0;
if (n <= 2)
{
return 1;
}
Else
{
while (n > 2)
{
num3 = Num1 + num2;
NUM1 = num2;
num2 = num3;
n--;
}
}
return num3;
}

This article is from the "0-point Time" blog, please make sure to keep this source http://10741764.blog.51cto.com/10731764/1711221

No recursive method is used to implement the Fibonacci sequence, and the input number n will output the nth number of the sequence.

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.