標題:
306 函式與陣列 (階乘)
[打印本頁]
作者:
陳育霖
時間:
2023-8-24 20:23
標題:
306 函式與陣列 (階乘)
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,包含名為compute()的函式,接收主程式傳遞的一個整數n(n ≥ 0),compute()計算n階乘值後回傳至主程式,並輸出n階層結果。
階乘的定義如下:
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
一個整數n(n ≥ 0)
輸出說明
n階層值
範例輸入
7
範例輸出
7!=5040
本帖隱藏的內容需要回復才可以瀏覽
作者:
王銘鴻
時間:
2023-8-26 11:07
#include<bits/stdc++.h>
using namespace std;
int compute(int n)
{
if(n==0)
return 1;
else
return n*compute(n-1);
}
int main ()
{
int n;
cin >> n;
printf("%d!=%d\n",n,compute(n));
return 0;
}
複製代碼
作者:
曾宥程
時間:
2023-10-7 11:04
#include<bits/stdc++.h>
using namespace std;
int compute(int a)
{
if(a==1)
return 1;
return a*compute(a-1);
}
int main()
{
int n;
cin>>n;
printf("%d!=%d",n,compute(n));
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2