Maxtron News, Android KitKat, stock firmware, Flash file, Lava iris, Ulefone Tiger, Mobile App, Marketing Tool, Infinix Stock Roms, Android Multi Tools Latest Version

program to Print Sum of factorial Series in C#

program to Print Sum of factorial Series in C# - for a long time we built this blog Maxtron News with the intention to advance the knowledge of the community about technological developments that continue to advance, because not everyone can enjoy the technology, so you will we present the technology news according to what you need, now we will discuss first about program to Print Sum of factorial Series in C# please refer to the information we provide we feel quite complete because we summarize from reliable sources.

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




just so much information program to Print Sum of factorial Series in C#

hopefully the article that we make this program to Print Sum of factorial Series in C# can be useful for you in adding science about gadgets that continue to advance.

you just read the article with title program to Print Sum of factorial Series in C# if you wish to bookmark or share it please use link https://katieandmaxtron.blogspot.com/2013/12/program-to-print-sum-of-factorial.html to get more information please visit our other blog page.

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

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

0 komentar:

Posting Komentar