Найти сумму ряда с заданной точностью - C# (192759)
Формулировка задачи:
Найти сумму ряда с точностью =10-4, общий член которого
Решение задачи: «Найти сумму ряда с заданной точностью»
textual
Листинг программы
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { double summ = 0; int i = 1; double ai = 0; do { ai = (Factorial(i)) /Factorial(2*i); summ += ai; // Console.WriteLine(summ.ToString() + " " + ai.ToString()); i++; } while (ai > 0.0001); Console.WriteLine(summ.ToString()); Console.ReadKey(); } private static double Factorial(int i) { if (i <= 1) return 1; else return Factorial(i - 1) * i; } } }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д