爬楼梯

int a,b;
a=b=1;
int c;
if(n==1||n==0)
return 1;
else
while(--n>0)
{
    c=a+b;
    a=b;
    b=c;
}
return c;
}
};

 

posted @ 2017-03-08 20:01  hu199758  阅读(71)  评论(0编辑  收藏  举报