標題:
401-遞迴階乘計算
[打印本頁]
作者:
許承鴻
時間:
2018-7-24 18:25
標題:
401-遞迴階乘計算
import java.util.Scanner;
public class JPD04 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
...
}
...
}
作者:
巫沛庭
時間:
2018-8-7 19:43
import java.util.Scanner;
public class JPA04 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String args[]) {
System.out.print("Input n(0<=n<=16)");
int a=keyboard.nextInt();
int g=f(a);
}
static int f(int a){
if(a==1)
{
return 1;
}
else {
return a*f(a-1);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2