>백엔드 개발 >C++ >C 프로그램의 팩토리얼 프로그램

C 프로그램의 팩토리얼 프로그램

王林
王林앞으로
2023-09-09 11:17:021228검색

C 프로그램의 팩토리얼 프로그램

숫자 n이 주어지면 숫자의 계승을 계산하는 작업입니다. 숫자의 계승은 숫자에 가장 작거나 같은 정수 값을 곱하여 계산됩니다.

팩토리얼은 −

0! = 1
1! = 1
2! = 2X1 = 2
3! = 3X2X1 = 6
4! = 4X3X2X1= 24
5! = 5X4X3X2X1 = 120
.
.
.
N! = n * (n-1) * (n-2) * . . . . . . . . . .*1

Example

的中文翻译为:

示例

Input 1 -: n=5
   Output : 120
Input 2 -: n=6
   Output : 720

사용할 수 있는 여러 가지 방법이 있습니다 −

  • 루프를 통해
  • 전혀 효과적이지 않은 재귀를 통해
  •  함수를 통해

아래는 함수를 이용한 구현입니다

Algorithm

Start
Step 1 -> Declare function to calculate factorial
   int factorial(int n)
      IF n = 0
         return 1
      End
      return n * factorial(n - 1)
step 2 -> In main()
   Declare variable as int num = 10
   Print factorial(num))
Stop

使用C语言

例子

#include<stdio.h>
// function to find factorial
int factorial(int n){
   if (n == 0)
   return 1;
   return n * factorial(n - 1);
}
int main(){
   int num = 10;
   printf("Factorial of %d is %d", num, factorial(num));
   return 0;
}

输ude

Factorial of 10 is 3628800

使용 C++

示例

#include<iostream>
using namespace std;
// function to find factorial
int factorial(int n){
   if (n == 0)
   return 1;
   return n * factorial(n - 1);
}
   int main(){
   int num = 7;
   cout << "Factorial of " << num << " is " << factorial(num) << endl;
   return 0;
}

输ude

Factorial of 7 is 5040

위 내용은 C 프로그램의 팩토리얼 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제