Austin Gadget, Samsung Galaxy, Android Jelly Bean, stock firmware, Volcano Box, miracle box, Internet Access, huawei, How to Backup Data, iPhone 7 to PC/Mac and ZTE

program to Print Sum of factorial Series in C#

program to Print Sum of factorial Series in C# - We have long been building this blog, we are trying to present a complete and reliable information. ranging from hardware products to software that develops to facilitate your life, but as the gadget's increasingly sophisticated capabilities are increasingly also the menu that you must understand, in the blog Austin Gadget we will review many gadget products from start speck and price, we will discuss first about program to Print Sum of factorial Series in C# hopefully information will give will give answer to your question to google, please refer to.

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();
}
}




so many information about program to Print Sum of factorial Series in C#

hopefully the information we provide about program to Print Sum of factorial Series in C# can be useful for you and the readers of all readers of this blog.

you just finished reading the article with the title program to Print Sum of factorial Series in C# if you intend to bookmark or share please use the link https://austinangck2809.blogspot.com/2013/12/program-to-print-sum-of-factorial.html and if you want to get other information please visit other pages on this blog.

Tag : , ,
Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : program to Print Sum of factorial Series in C#

0 comments:

Posting Komentar