爬楼梯
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬楼梯相关的知识,希望对你有一定的参考价值。
代码(C++):
class Solution {
public:
/**
* @param n: An integer
* @return: An integer
*/
int climbStairs(int n) {
// write your code here
// write your code here
int one = 0;
int two = 1;
while(n>0) {
two=one+two;
one=two-one;
n--;
}
return two;
}
};
以上是关于爬楼梯的主要内容,如果未能解决你的问题,请参考以下文章