program to Print Sum of factorial Series in C#

program to Print Sum of factorial Series in C# - welcome to our blog Techno Live, now we will discuss information about the program to Print Sum of factorial Series in C#, our admins on this blog has been around to collect information you are looking for so that we usakan to display complete information for you, and in this blog, you can also search for other information, ok please continue reading may be easily understood:

This is about : program to Print Sum of factorial Series in C#
And this article : 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();
}
}




Articles program to Print Sum of factorial Series in C# finished we discussed

A few of our information about the program to Print Sum of factorial Series in C#, I hope you can exploit carefully

No've You've finished reading an article on program to Print Sum of factorial Series in C# and many articles about modern home in our blog this, please read it. and url link of this article is http://liveeconcerts.blogspot.com/2013/12/program-to-print-sum-of-factorial.html Hopefully discussion articles on provide more knowledge about the world of tech gadgets.

Tag : , ,

Related Posts :

0 Response to "program to Print Sum of factorial Series in C#"

Post a Comment