Info program to Print Sum of factorial Series in C# - this blog we have built from a few years ago and already very much information about gadgets that we convey and a lot of blog visitors
New Blog Techno News who are satisfied with the information, we will always try to update the latest information for you, first about Info program to Print Sum of factorial Series in C# many already we collect data to make this article so you do not miss the news, please see:
Articles :
Info program to Print Sum of factorial Series in C#
full Link :
Info program to Print Sum of factorial Series in C#
Article Csharp,
Article programs,
You can also see our article on:
Info 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 Info program to Print Sum of factorial Series in C# finished in discussion
hopefully the information we convey about Info program to Print Sum of factorial Series in C# can benefit you in getting new knowledge about technology,
you just finished reading the information Info program to Print Sum of factorial Series in C# we hope this informmation can answer the question you submit to googlle, if you want to bookmark or share please use link https://moymoycikukecik.blogspot.com/2013/12/info-program-to-print-sum-of-factorial.html and do not forget to always visit this blog to get the latest information every day.
Tag :
Csharp,
programs,
0 komentar:
Posting Komentar