program to Print Sum of factorial Series in C#

program to Print Sum of factorial Series in C# - we say welcome to you who have been searching for information via search engines such as Google, in a blog Tech Gallery, now we will discuss information about the program to Print Sum of factorial Series in C#, we have been looking for a lot of information from a trusted and collect it in this blog, so you get the information complete and easy to understand, please read through:

Article Csharp, Article programs,

You can also see our article on:


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



Information about the program to Print Sum of factorial Series in C# we have conveyed

A few of our information about the program to Print Sum of factorial Series in C#, I hope you can exploit carefully

You have finished reading program to Print Sum of factorial Series in C# and many articles about Tech Gallery in our blog this, please read it. and url link of this article is https://littlebitjohnny.blogspot.com/2013/12/program-to-print-sum-of-factorial.html Hopefully discussion articles on provide more knowledge about the world of new tech gadgets.

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

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

  • C# Program to Print ASCII Values Using do-while LoopC# Program to Print ASCII Values Using do-while LoopProgram Statement:Write a program to print all the ASCII values and their equivalent characters using a do-while loop ...
  • C# Program to Print TrianglesC# Program to Print TrianglesProgram Statement:Write a program to produce the following output:A B C D E F G F E D C B AA B C D E F     F E D C B AA B C D E &n ...
  • C# Main Function for Calling all classes http://littlebitjohnny.blogspot.com /2014/02/c-main-function-for-calling-all-classes.html" rel="nofollow" target="_blank">C# Main Function for Calling all classes void ...
  • C# program to print Factorial of all Prime numbers in csharpC# program to print Factorial of all Prime numbersProgram Statement:Write a program using loop which takes one value n from user and show the factorial of all prime numb ...
  • Array Problem Solving using C#Array Problem Solving using C#Program Statement:Create two arrays student_rollno and student_marks, both of same size. First array will save the rollnos of students and ...

1 comments: