Enter the Nth Number : 10 Sum of N Numbers : 55
Users Online
· Guests Online: 106
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Newest Threads
No Threads created
Hottest Threads
No Threads created
Latest Articles
Articles Hierarchy
C# Program to Generate the Sum of N Numbers
C# Program to Generate the Sum of N Numbers
This is a C# Program to generate the sum of n numbers.
Problem Description
This C# Program Generates the Sum of N Numbers.
Problem Solution
This C# program obtains the Nth number from the user and calculates its sum till the Nth number.
Program/Source Code
Here is source code of the C# Program to Generate the Sum of N Numbers. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/* * C# Program to Generate the Sum of N Numbers */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace program { class Program { static void Main(string[] args) { int i, sum = 0,n; Console.Write("Enter the Nth Number : "); n = int.Parse(Console.ReadLine()); for (i = 0; i <= n; i++) { sum = sum + i; } Console.WriteLine("\nSum of N Numbers : " + sum); Console.ReadLine(); } } }
Program Explanation
In this C# program, we are reading the Nth number using ‘n’ variable. Using for loop we are computing the sum of the number till the Nth number. Print the sum of the elements.
Runtime Test Cases
Comments
No Comments have been Posted.
Post Comment
Please Login to Post a Comment.