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

爬楼梯

时间:2017-03-08 13:02:48      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:int   names   str   tput   else   爬楼梯   turn   ios   main   

#include "stdafx.h"
#include "iostream"
using namespace std;

int fibonacci(int n)
{
if (n > 2)
return fibonacci(n - 1) + fibonacci(n - 2);
else
return 1;
}
int main()
{
int data[20];
int t;
int i;
cin>>"Please input T and the nums: \n";
cin>>"%d",&t;
for (i = 0; i<t; i++)
{
cin>>"%d", &data[i];
}
cout<<"The output: \n";
for (i = 0; i<t; i++)
{
cout<<"%d\n", fibonacci(data[i] + 1);
}
return 0;
}

爬楼梯

标签:int   names   str   tput   else   爬楼梯   turn   ios   main   

原文地址:http://www.cnblogs.com/lvzhanying/p/6518421.html

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