返回列表 發帖

401-遞迴階乘計算

import java.util.Scanner;
public class JPD04 {
    static Scanner keyboard = new Scanner(System.in);
    public static void main(String args[]) {
        

    ...

    }
   
    ...

}
Stay hungry,
Stay foolish.

  1. import java.util.Scanner;
  2. public class JPA04 {
  3.     static Scanner keyboard = new Scanner(System.in);
  4.     public static void main(String args[]) {
  5.         
  6.    
  7.     System.out.print("Input n(0<=n<=16)");
  8.     int a=keyboard.nextInt();
  9.     int g=f(a);
  10.    
  11.     }
  12.    
  13.     static int f(int a){
  14.             if(a==1)
  15.             {
  16.                     return 1;
  17.             }
  18.             else {
  19.                     return a*f(a-1);
  20.             }
  21.     }

  22. }
複製代碼

TOP

返回列表