Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Display n natural numbers and their sum

C# Sharp For Loop: Exercise-3 with Solution

Write a program in C# Sharp to display n terms of natural number and their sum.

Pictorial Presentation:

C# Sharp Exercises: Display n natural numbers and their sum

Sample Solution:

C# Sharp Code:

using System;  
public class Exercise3  
{  
    public static void Main() 
{
   int i,n,sum=0;
   
	Console.Write("\n\n");
    Console.Write("Display n terms of natural number and their sum:\n");
    Console.Write("----------------------------------------------");
    Console.Write("\n\n");
	
   Console.Write("Input Value of terms : ");
   n= Convert.ToInt32(Console.ReadLine());   
   Console.Write("\nThe first {0} natural number are :\n",n);
   for(i=1;i<=n;i++)
   {
     Console.Write("{0} ",i);
     sum+=i;
   }
   Console.Write("\nThe Sum of Natural Number upto {0} terms : {1} \n",n,sum);
  }
}

Sample Output:

Display n terms of natural number and their sum:                                                              
----------------------------------------------                                                                
                                                         
Input Value of terms : 5                                                                                      
                                                                                                              
The first 5 natural number are :                                                                              
1 2 3 4 5                                                                                                     
The Sum of Natural Number upto 5 terms : 15   

Flowchart:

Flowchart: Display n natural numbers and their sum

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C# Sharp program to find the sum of first 10 natural numbers.
Next: Write a program in C# Sharp to read 10 numbers from keyboard and find their sum and average.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.