📜  C#求数的阶乘

📅  最后修改于: 2020-10-31 14:16:03             🧑  作者: Mango

C#数的阶乘

C#中的阶乘程序:n的阶乘是所有正降序整数的乘积。 n的阶乘由n!表示。例如:

4! = 4*3*2*1 = 24  
6! = 6*5*4*3*2*1 = 720    

来4的发音为“ 4阶乘”,也称为“ 4砰”或“ 4尖叫”。

阶乘通常用于组合和排列(数学)。

让我们看一下使用for循环的C#中的析因程序。

using System;
  public class FactorialExample
   {
     public static void Main(string[] args)
      {
       int i,fact=1,number;    
       Console.Write("Enter any Number: ");    
       number= int.Parse(Console.ReadLine());   
       for(i=1;i<=number;i++){    
        fact=fact*i;    
       }    
       Console.Write("Factorial of " +number+" is: "+fact);  
     }
  }

输出:

Enter any Number: 6
Factorial of 6 is: 720