返回列表 發帖

306 函式與陣列 (階乘)

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,包含名為compute()的函式,接收主程式傳遞的一個整數n(n ≥ 0),compute()計算n階乘值後回傳至主程式,並輸出n階層結果。

階乘的定義如下:



提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
一個整數n(n ≥ 0)

輸出說明
n階層值

範例輸入
7
範例輸出
7!=5040

本帖隱藏的內容需要回復才可以瀏覽

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int compute(int a)
  4. {
  5.     if(a==1)
  6.         return 1;
  7.     return a*compute(a-1);
  8. }
  9. int main()
  10. {
  11.     int n;
  12.     cin>>n;
  13.     printf("%d!=%d",n,compute(n));
  14.     return 0;
  15. }
複製代碼
Vincent

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int compute(int n)
  4. {
  5.     if(n==0)
  6.         return 1;
  7.     else
  8.         return n*compute(n-1);
  9. }
  10. int main ()
  11. {
  12.     int n;
  13.     cin >> n;
  14.     printf("%d!=%d\n",n,compute(n));
  15.     return 0;
  16. }
複製代碼

TOP

返回列表