4 8 簡單階乘計算

2021-07-08 22:05:52 字數 487 閱讀 6114

本題要求實現乙個計算非負整數階乘的簡單函式。

函式介面定義:

int factorial( const int n );

其中n是使用者傳入的引數,其值不超過12。如果n是非負整數,則該函式必須返回n的階乘,否則返回0。

裁判測試程式樣例:

#include 

int factorial( const

int n );

int main()

/* 你的**將被嵌在這裡 */

輸入樣例:

5 輸出樣例:

5! = 120

解答程式:

int factorial( const int n )

return

sum;}

else

return

0;}else

return

0;}

6 8 簡單階乘計算

6 8 簡單階乘計算 10 分 本題要求實現乙個計算非負整數階乘的簡單函式。int factorial const int n 其中n是使用者傳入的引數,其值不超過12。如果n是非負整數,則該函式必須返回n的階乘,否則返回0。include int factorial const int n int...

c語言 簡單階乘計算

本題要求實現乙個計算非負整數階乘的簡單函式。函式介面定義 int factorial const int n 其中n是使用者傳入的引數,其值不超過12。如果n是非負整數,則該函式必須返回n的階乘,否則返回0。裁判測試程式樣例 include intfactorial const int n int ...

6 8 簡單階乘計算 10 分

本題要求實現乙個計算非負整數階乘的簡單函式。函式介面定義 int factorial const int n 其中n是使用者傳入的引數,其值不超過12。如果n是非負整數,則該函式必須返回n的階乘,否則返回0。裁判測試程式樣例 include intfactorial const int n int ...