program to print sum of series in C# using loops

program to print sum of series in C# using loops - 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 series in C# using loops, 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 series

Program Statement:
Write a program to display the sum of the following series using loop.
1*x + 2*x2 + 3*x3 + 4*x4 + 5*x5 + … + n*xn

Solution:
 static void Main(string[] args)
{
int j, n = 1, x, lastn, sum = 0, prod = 1;
Console.WriteLine("Enter last digit:");
lastn=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter value of x:");
x = Convert.ToInt32(Console.ReadLine());
for (j = 1; j <= lastn; j++)
{
n = n * x;
prod = n * j;
sum = sum + prod;
}
Console.WriteLine("Sum of Series 1*x + 2*x2 + 3*x3 + 4*x4 + 5*x5 + … + n*xn when n=: " + n +" and x= "+ x+ "sum= "+ sum);
Console.ReadLine();
}



Information about the program to print sum of series in C# using loops we have conveyed

A few of our information about the program to print sum of series in C# using loops, I hope you can exploit carefully

You have finished reading program to print sum of series in C# using loops 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-series-in-c.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 series in C# using loops

  • How to View Source Code of .NET EXEHow to View Source Code of .NET EXE.NET one of the most familiar word for developers/programmers and CS/IT students. Many of you want to see .NET source code, so if you ...
  • C# Program for Array solving problemsC# Program for Array solving problemsProgram Statement:Write a function which takes four arrays of same size as arguments; array1, array2, array3, array4. The function w ...
  • C# Program to display the different series output on the screenC# Program to display the different series output on the screenProgram Statement:Write a program which display the following output on the screen.1 2 3 4 51 4 9 16 251 8 ...
  • C# Simple Loop Program example to print charactersSimple Loop Problem to Print A B D H PProblem Statement:Write a program using for loop which prints the following output. (You have to find a pattern to print alphabetic ...
  • 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 ...

0 comments:

Post a Comment