package com.bjsxt.zhp; |
/** |
* 1、使用递归求n! |
* |
* @author Administrator |
* 1,使用for循环算出 5! |
* 5! 5*4! 4! 4*3! 3 3*2! 2 2*1! 1!=1; |
*/ |
public class Test8 { |
|
public static void main(String[] args) { |
/* int result=1; |
for (int i = 1; i <=5; i++) { |
result = i*result; |
} |
System.out.println(result);*/ |
int fn = fn( 9 ); |
System.out.println(fn); |
} |
|
} |
by: 发表于:2017-07-07 15:48:52 顶(0) | 踩(0) 回复
??
回复评论