3 Star 2 Fork 0

lo01/introduction_to_programming

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
FiboN.c 524 Bytes
一键复制 编辑 原始数据 按行查看 历史
JinxinDu 提交于 2022-03-31 22:09 . J.Du
//
// Created by DuJinxin on 2022/3/31.
//
#include <stdio.h>
int FiboN()
{
int u1 =1, u2 = 2;
int n,Fibn;
int k,temp;
printf("please enter the number of the fibonacci sequency:\n");
scanf("%d",&n);
if(n==1)
Fibn = 1;
else
if(n==2)
Fibn = 2;
else
{
for(k=1;k<=n-2;k=k+1)
{
temp = u1 + u2;
u1 = u2;
u2 = temp;
}
Fibn = u2;
}
printf("The %d-th Fibo number is: %d",n,Fibn);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lo01/introduction_to_programming.git
git@gitee.com:lo01/introduction_to_programming.git
lo01
introduction_to_programming
introduction_to_programming
master

搜索帮助