Enter the Nth Number : 10 Sum of N Numbers : 55
This is a C# Program to generate the sum of n numbers.
This C# Program Generates the Sum of N Numbers.
This C# program obtains the Nth number from the user and calculates its sum till the Nth number.
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(); } } }
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.
Enter the Nth Number : 10 Sum of N Numbers : 55