摘要: 1.楼梯问题 代码: #include<iostream>using namespace std;int step(int);int main(){ int n; cin>>n; cout<<step(n); }int step(int n){ if(n==1)return 1;if(n==2)re 阅读全文
posted @ 2016-04-26 12:03 牛轰轰的白大爷 阅读(367) 评论(0) 推荐(2) 编辑