70. 爬樓梯

class Solution {     public int climbStairs(int n) {         if(n==1)             return 1;         int step=0;         int step1=1,step2=1;         for(int i=1;i<n;i++)         {             step=ste
相關文章
相關標籤/搜索