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 first 10 natural numbers

C# Sharp For Loop: Exercise-1 with Solution

Write a program in C# Sharp to display the first 10 natural numbers.

Pictorial Presentation:

C# Sharp Exercises: Display first 10 natural numbers

Sample Solution:

C# Sharp Code:

using System;  
public class Exercise1  
{  
    public static void Main()  
    {
    int i;
    Console.Write("\n\n");
    Console.Write("Display the first 10 natural numbers:\n");
    Console.Write("---------------------------------------");
    Console.Write("\n\n");
	
     Console.WriteLine("The first 10 natural number are:");

	for (i=1;i<=10;i++)
	{      
     Console.Write("{0} ",i);
	}
    Console.Write("\n\n");	
  }
}

Sample Output:

Display the first 10 natural numbers:                                                                         
---------------------------------------                                                                        
The first 10 natural number are:                                                                              
1 2 3 4 5 6 7 8 9 10 

Flowchart:

Flowchart: Display first 10 natural numbers

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: C# Sharp programming exercises: For Loop
Next: Write a C# Sharp program to find the sum of first 10 natural numbers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.