實驗三:分別用for、while和do-while迴圈語句以及遞迴方法計算n!,並輸出算式

森.嶼發表於2019-03-24

實驗三:分別用forwhiledo-while迴圈語句以及遞迴方法計算n!,並輸出算式

//for迴圈語句求n

Public class jiecheng {

Public static void main (String[] args) {

Scanner = new Scanner(Sytem.in);

Int n = scanner.nextInt();

Int a =1;

For(int i=1;i<=n;i++){

a*=i;

}

System.out.printIn(a);

}

}

//while語句求n!

public class jiecheng {

 public static void main(String[] args) {

  Scanner in = new Scanner(System.in);

  int n;

  n=in.nextInt();

  int i=1,sum=1;

  while(i<=n)

  {

   sum=sum*i;

   i++;

  }

  System.out.printIn(sum);

 }

 

}

//do-while語句求n!

public class jiecheng {

public static void main(String[] args) {

int index = 1;

do {

System.out.println(index);

index = index + 1;

} while(index <= 10);

System.out.println("DONE.");

}

}

//遞迴語句求n! 

public class jiecheng {
public static void main(String args[]){

        Scanner input = new Scanner(System.in); //構建一個輸入例項

        int n = input.nextInt();                //輸入n的值

        System.out.println("The anwser of n! is " + jiecheng(n));      // n的階乘的值為:jiecheng(n);   //用遞迴函式求解n的階乘

    }

    public static int jiecheng(int n){         //階乘求解函式

        if(n == 0){                             //判斷傳進來的n是否為0,若為零返回階乘為1

            return 1;

        }

        return n*jiecheng(n-1);             //重新呼叫函式,繼續判斷n-1是否為零,

}                                          //若不為0則return值為n*(n-1)*jiecheng(n-1-1),直到n=0,跳出

 

心得:1.瞭解並掌握了迴圈結構fordo-shilewhile以及遞迴語句的用法。

           2.進一步熟悉了java語句的編寫以及對eclipse的用法。

           3.在編寫過程中應認真檢查,不然出現字母出錯都會導致程式大面積錯誤。

相關文章