阅读下列利用递归来求n!的程序:
class FactorialTest{
static long Factorial (int n) { //定义Factorial ()方法
if (n==1)
return 1;
else
return n* Factorial(_____);
}
public static void main (String a[]) { // main ()方法
int n=8;
System.out.println{n+"! = "+Factorial (n)};
}
}
为保证程序正确运行,在下划线处应该填入的参数是:
An-1
Bn-2
Cn
Dn+1
相关试题
-
阅读下列利用递归来求n!的程序: class FactorialTest{ static long Factorial (int n) { //定义Factorial ()方法 if (n
-
阅读下列程序 public class VariableUse{ public static void main (String[] args) { int a; if
-
阅读下列代码 public class Person{ static int arr[ ] = new int[10]; public static void main (String[] a
-
System.out.println(( +x_ ,+y+)); if (x>=10) flag=false; } } } 下列对程序运行结果描述的
-
下面是一段javabean程序,该程序的运行结果是( )。public class NullTest{public static void main(String[]?args){int M=0;St