Advertisement
Sephinroth

prac 4 ex 5 red 2.0

Oct 7th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.10 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace _4._4
  7. {
  8.     class Program
  9.     {
  10.         /*static double F(double i, int n)
  11.         {
  12.             return 1 + Math.Pow(-i, 2 * n) / (n * (n + 2) * (n + 3));
  13.         }*/
  14.         static void Main(string[] args)
  15.         {
  16.             Console.Write("Введите точность e: ");
  17.             double e = double.Parse(Console.ReadLine());
  18.             double s = 0, h = 0.1;
  19.             double i = 0.2, a = 1;
  20.             int n = 1;
  21.             Console.WriteLine("{0,10} {1,20} {2,10}", "Значение x", "Значение функции F(x)", "Количество просуммированных слагаемых n");
  22.             while (Math.Abs(a) >= e && i <= 0.7)
  23.             {
  24.                 Console.WriteLine("{0,10}\t{1,20}\t{2,10}", i, a /*F(i, n)*/, n + 1);
  25.                 //a /= F(i, n);
  26.                 a += i * i * (3 * i * i - 10) / 120;
  27.                 s += a;
  28.                 i += h;
  29.                 n++;
  30.  
  31.             }
  32.  
  33.             Console.ReadKey();
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement