递归的方式计算阶乘 public class Demo1 { //一列数的规则如下: 1、1、2、3、5、8、13、21、34…… 求第n位数是多少, 用递归算法实现 public static void main(St ...