- public class test {
- /**
- * 用于测试
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- for(int i=1; i<10; i++){
- System.out.println(i + "的阶乘为:" + getFactorial(i));
- }
- }
- /**
- * 创建得到阶乘的方法
- * @param n 传入要得到几的阶乘
- * @return 得到n的阶乘数
- */
- public static int getFactorial(int n){
- if(n == 1){
- return 1;
- }
- return n*getFactorial(n-1);
- }
- }
复制代码 |