标签:ret code air class 爬楼梯 楼梯 tair int ram
public class Solution {
/**
* @param n: An integer
* @return: An integer
*/
public int climbStairs(int n) {
// write your code here
if(n==1)
return 1;
else if(n==2)
return 2;
else return fun(n-1)+fun(n-2);
}
}
标签:ret code air class 爬楼梯 楼梯 tair int ram
原文地址:http://www.cnblogs.com/MXY1239542491/p/6549892.html