标签:style color os io ar for 数据 div 代码
有一楼梯共m级,刚开始时你在第一级,若每次只能跨上一级或二级,要走上第m级,共有多少走法?
注:规定从一级到一级有0种走法。
2 2 3
1 2
代码:
#include<stdio.h> int main() { int T,n,i; int f[41]; f[1]=0;f[2]=1;f[3]=2; for(i=4;i<41;++i) f[i]=f[i-1]+f[i-2]; scanf("%d",&T); while(T--) { scanf("%d",&n); printf("%d\n",f[n]); } return 0; }
标签:style color os io ar for 数据 div 代码
原文地址:http://blog.csdn.net/qq_18062811/article/details/38929601