摘要: //阶乘 public static int rec(int n){ if(n==1){ return 1; }else{ return n*rec(n-1); } } 阅读全文
posted @ 2014-06-24 11:36 蝼蚁尚不自知 阅读(164) 评论(0) 推荐(0) 编辑