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.
Sanfoundry Certification Contest of the Month is Live. 100+ Subjects. Participate Now!
advertisement
advertisement
Runtime Test Cases
Enter the Nth Number : 10 Sum of N Numbers : 55
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
If you wish to look at all C# Programming examples, go to 1000 C# Programs.
Next Steps:
- Get Free Certificate of Merit in C# Programming
- Participate in C# Programming Certification Contest
- Become a Top Ranker in C# Programming
- Take C# Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Buy Computer Science Books
- Buy MCA Books
- Practice Computer Science MCQs
- Buy C# Books
- Practice MCA MCQs