利用斯特林公式对阶乘近似求值

作者:追风剑情 发布于:2016-12-7 13:55 分类:Algorithms

斯特林公式

1111111.jpg

示例代码

  1. using System;
  2.  
  3. namespace TTTest
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. double n = 10;
  10. Console.WriteLine(string.Format("精确求值: {0}的阶乘等于{1}", n, Factorial(n)));
  11. Console.WriteLine(string.Format("近似求值: {0}的阶乘等于{1}", n, AsyFactorial(n)));
  12.  
  13. Console.Read();
  14. }
  15.  
  16. private static double Factorial(double n)
  17. {
  18. double ret = n;
  19. for (double i = n - 1; i > 1; i--)
  20. ret *= i;
  21. return ret;
  22. }
  23.  
  24. //利用斯特林公式对阶乘近似求值
  25. private static double AsyFactorial(double n)
  26. {
  27. double ret = Math.Sqrt(2 * Math.PI * n) * Math.Pow(n / Math.E, n);
  28. return ret;
  29. }
  30. }
  31. }

 

运行测试

22222.png

 

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号