摘要: int fab(int n) { return (n > 1) ? (fab(n-1)+ fab(n-2)) : 1;} 阅读全文
posted @ 2010-06-12 15:14 清山博客 阅读(425) 评论(0) 推荐(0)