博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1147: 零起点学算法54——Fibonacc
阅读量:5943 次
发布时间:2019-06-19

本文共 958 字,大约阅读时间需要 3 分钟。

1147: 零起点学算法54——Fibonacc

Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lld
Submitted: 2097  Accepted: 863
[][][]

Description

Fibonacci数列定义为(1,1,2,3,5,8,.....),即每个元素是前两个元素的和。如果一个Fibonacci数与所有小于它的Fibonacci数互质,那么称之为Fibonacci质数。

现在要求你输出前n个Fibonacci数
The Fibonacci Numbers {0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 ...} are defined by the recurrence:
F(0)=0
F(1)=1
F(i)=F(i-1)+F(i-2)
Write a program to calculate the Fibonacci Numbers. 

 

Input

 

 The first line of the input file contains a single integer T, the number of test cases. The following T lines,each contains an integer n ( 0 <= n <= 45 ), and you are expected to calculate Fn

 

Output

 

 Output Fn on a separate line.

 

Sample Input

 
5035920

 

Sample Output

025346765

 

Source

 
1 #include
2 int main(){ 3 int T,a[50]={
0,1,1}; 4 for(int i=3;i<=45;i++){ 5 a[i]=a[i-1]+a[i-2]; 6 } 7 scanf("%d",&T); 8 for(int i=0;i

 

转载于:https://www.cnblogs.com/dddddd/p/6680735.html

你可能感兴趣的文章
克隆Centos 无法上网
查看>>
我的友情链接
查看>>
Android 广播的生命周期
查看>>
Vim使用帮助
查看>>
Call && apply 用法
查看>>
Ora - 20005
查看>>
使用组策略部署exe软件
查看>>
linux笔记第一章--基本命令记载
查看>>
虚拟局域网VLAN
查看>>
Linux基础命令---dumpe2fs
查看>>
计算机视觉领域的一些牛人博客,超有实力的研究机构等的网站链接
查看>>
Linux网络配置命令
查看>>
软件安全加解密,程序授权管理控件CrypKey SDK
查看>>
2012年度IT博客大赛50强报道:高俊峰
查看>>
记mysqldump导出导入数据库的一个小问题~
查看>>
Win32窗口以及C++日志
查看>>
c易错
查看>>
python—函数实例一
查看>>
苏宁、国美-OPM战略
查看>>
socket编程
查看>>