program to print sum of series in C# using loops

program to print sum of series in C# using loops - welcome to our blog Techno Live, now we will discuss information about the program to print sum of series in C# using loops, our admins on this blog has been around to collect information you are looking for so that we usakan to display complete information for you, and in this blog, you can also search for other information, ok please continue reading may be easily understood:

This is about : program to print sum of series in C# using loops
And this article : program to print sum of series in C# using loops
Article Csharp, Article programs,

You can also see our article on:


program to print sum of series in C# using loops

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




Articles program to print sum of series in C# using loops finished we discussed

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

No've You've finished reading an article on program to print sum of series in C# using loops and many articles about modern home in our blog this, please read it. and url link of this article is http://liveeconcerts.blogspot.com/2013/12/program-to-print-sum-of-series-in-c.html Hopefully discussion articles on provide more knowledge about the world of tech gadgets.

Tag : , ,

Related Posts :

0 Response to "program to print sum of series in C# using loops"

Post a Comment