码迷,mamicode.com
首页 > 其他好文 > 详细

Problem R: 求斐波那契数列的前n项值

时间:2018-10-28 13:36:32      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   pre   int   std   problem   span   斐波那契数   stdio.h   \n   

#include<stdio.h>
int main()
{
    int n;
    while(scanf("%d",&n)!=EOF){
    int x1,x2,i,x;
    x1=1;
    x2=1;
    if(n==1)
    printf("1");
    if(n==2)
    printf("1 1");
    if(n>2)
    {
    printf("%d %d",x1,x2);
    for(i=3;i<=n;i++)
    {
        x=x1+x2;
        printf(" %d",x);
        x1=x2;
        x2=x;
    }}
    printf("\n");
    }
    return 0;
}

 

Problem R: 求斐波那契数列的前n项值

标签:style   pre   int   std   problem   span   斐波那契数   stdio.h   \n   

原文地址:https://www.cnblogs.com/chenlong991223/p/9865170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!