Advertisement
vencinachev

Functions

Jan 5th, 2021
870
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1. static double CalcPI(int n)
  2.         {
  3.             double pi = 0;
  4.             for (int k = 0; k < n; k++)
  5.             {
  6.                 pi += Math.Pow(-1, k) / (2 * k + 1);
  7.             }
  8.             pi *= 4;
  9.             return pi;
  10.         }
  11.        
  12.         static double sin(double x)
  13.         {
  14.             double result = 0;
  15.             for (int n = 0; n < 10; n++)
  16.             {
  17.                 result += Math.Pow(-1, n) * (Math.Pow(x, 2 * n + 1) / Factorial(2 * n + 1));
  18.             }
  19.             return result;
  20.         }
  21.         static long Factorial(int n)
  22.         {
  23.             long result = 1;
  24.             for (int i = 2; i <= n; i++)
  25.             {
  26.                 result *= i;
  27.             }
  28.             return result;
  29.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement