Innaz Review, Samsung Galaxy, price and specifications, Flash Android, Games For Your Apple, Jailbreak Tool For iOS, IMEI Unlock Method

Sabtu, 28 Desember 2013

program to Print Sum of factorial Series in C#

program to Print Sum of factorial Series in C# - In the past, when I started to start blogging, many thoughts disturbed me. I want to have a blog with a nice and interesting look. I am constantly looking for basic tutorials from some web and blogs on the internet. And thankfully, one by one I started to do it, and of course have to go through some confusion process first, but the most important of a blog that is content, yes on the blog Innaz Review we will discuss a lot of information about gadgets that are very in need by you, now we will discuss first about program to Print Sum of factorial Series in C# please refer to the information we will convey until completion:

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 much information program to Print Sum of factorial Series in C#

hopefully program to Print Sum of factorial Series in C# information can provide benefits for you in determining the gadgets that fit your needs in daily life.

you just read program to Print Sum of factorial Series in C# if you feel this information is useful and want to bookmark or share it please use link https://innaz2.blogspot.com/2013/12/program-to-print-sum-of-factorial.html if you want more information please search on other pages this blog.

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