Full Specs Techno, Samsung Odin, Latest Version Full Setup, How to reset password and username, Oppo R7 Plus Price and Features, IMEI Tool, samsung Galaxy Charging

program to Print Sum of factorial Series in C#

program to Print Sum of factorial Series in C# - we are grateful this blog Full Specs Techno has been a few years can always provide useful information for you, because our goal is to advance your life with the latest technology knowledge that will make your life easier, now we will discuss first about program to Print Sum of factorial Series in C# this information we build from various reliable sources that we collect specifically for you visitors of this blog, please see:

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

hopefully the information we provide dengn title program to Print Sum of factorial Series in C# can provide benefits for you in determining the gadget that suits your needs.

you just read the article program to Print Sum of factorial Series in C# if you want to bookmark or share please use link https://fullcomicfrenzy.blogspot.com/2013/12/program-to-print-sum-of-factorial.html there is still a lot of information on this blog if you want to read it please visit other page, umpteen and thank you.

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

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

0 komentar:

Post a Comment