2008年6月4日
摘要: public int GetNumber(int pos)(C#版) { if(pos==0||pos==1) { return 1; } int res = GetNumber(pos - 1) + GetNumber(pos - 2); ... 阅读全文
posted @ 2008-06-04 18:17 黄洪汉 阅读(197) 评论(0) 推荐(0)