program to Print Sum of factorial Series in C# - Did you know that every day there is always a new technology that is created? if you want to know please refer to the blog
Gadget News well now we will discuss first about program to Print Sum of factorial Series in C# as you need now, we have compiled this article carefully, so please see to finish.
Articles :
program to Print Sum of factorial Series in C#
full Link :
program to Print Sum of factorial Series in C#
Article Csharp,
Article programs,
You can also see our article on:
program to Print Sum of factorial Series in C#
C# program to Print Sum of factorial Series
Program Statement:
Write a program to display the sum of the following series.
2/1! + 4/3! + 6/5! + 8/7! + 10/9! + . . . + n/(n-1)!
Solution:
public class factorial
{
int n;
public void ser()
{
double f, sum = 2, res = 1, up = 2;
Console.WriteLine("\n\t\tSeries = 2/1! + 4/3! + 6/5! + 8/7! + 10/9! + . . . + n/(n-1)!");
Console.WriteLine();
Console.Write("\n\t\tEnter ending point : ");
n = Convert.ToInt16(Console.ReadLine());
for (int i = 2; i <= n; i++)
{
if (i % 2 == 1)
{
f = 1;
for (int x = i; x > 0; x--)
{ f = f * x; }
up = up + 2;
res = up / f;
sum = sum + res;
}
}
Console.WriteLine("\n\t\tSum : {0}\n", sum);
Console.WriteLine();
}
}
article program to Print Sum of factorial Series in C# has been completed in the discussion
hopefully the information program to Print Sum of factorial Series in C# that we provide can be useful for you to know the development of technology in the present
articles program to Print Sum of factorial Series in C# we have conveyed to you, if feel this information is useful and you want to bookmark or share so that more people who know please use link https://profsmythe.blogspot.com/2013/12/program-to-print-sum-of-factorial.html?m=0.
Tag :
Csharp,
programs,
0 comments:
Post a Comment