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

爬楼梯

时间:2017-03-08 22:37:52      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:integer   write   public   cli   tair   return   while   int   turn   

class Solution {
public:
/**
* @param n: An integer
* @return: An integer
*/

int climbStairs(int n) {
// write your code here
int a = 1, b = 1, k = 0;
if(n == 1 || n ==0){
return 1;
}
while(--n > 0){
k = a+b;
b = a;
a = k ;
}
return k;
}
};

 

爬楼梯

标签:integer   write   public   cli   tair   return   while   int   turn   

原文地址:http://www.cnblogs.com/aly15109725486/p/6523207.html

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