C#: Display the sum of n number of odd natural number
Write a C# Sharp program to display the n terms of odd natural numbers and their sums.
like: 1 3 5 7 ... n
Visual Presentation:

Sample Solution:
C# Sharp Code:
Sample Output:
Display the sum of n odd natural number: ------------------------------------------ Input number of terms : 5 The odd numbers are :1 3 5 7 9 The Sum of odd Natural Number upto 5 terms : 25
Flowchart:

C# Sharp Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a program in C# Sharp to display the multiplication table vertically from 1 to n.
Next: Write a program in C# Sharp to display following Pattern.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.