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: Sort elements of array in ascending order

C# Sharp Array: Exercise-11 with Solution

Write a program in C# Sharp to sort elements of array in ascending order.

C# Sharp: Sort elements of array in ascending order

Sample Solution:-

C# Sharp Code:

using System;  
public class Exercise11  
{  
    public static void Main() 
{
	int[] arr1 = new int[10];
    int n, i, j, tmp;
	
	
       Console.Write("\n\nSort elements of array in ascending order :\n");
       Console.Write("----------------------------------------------\n");	

    Console.Write("Input the size of array : ");
    n = Convert.ToInt32(Console.ReadLine()); 

       Console.Write("Input {0} elements in the array :\n",n);
       for(i=0;i<n;i++)
            {
	      Console.Write("element - {0} : ",i);
		 arr1[i] = Convert.ToInt32(Console.ReadLine());  
	    }

    for(i=0; i<n; i++)
    {
        for(j=i+1; j<n; j++)
        {
            if(arr1[j] < arr1[i])
            {
                tmp = arr1[i];
                arr1[i] = arr1[j];
                arr1[j] = tmp;
            }
        }
    }
    Console.Write("\nElements of array in sorted ascending order:\n");
    for(i=0; i<n; i++)
    {
        Console.Write("{0}  ", arr1[i]);
    }
		        Console.Write("\n\n");	
  }

}

Sample Output:

Sort elements of array in ascending order :                                                                   
----------------------------------------------                                                                
Input the size of array : 4                                                                                   
Input 4 elements in the array :                                                                               
element - 0 : 1                                                                                               
element - 1 : 2                                                                                               
element - 2 : 3                                                                                               
element - 3 : 4                                                                                               
Elements of array in sorted ascending order:                                                                  
1  2  3  4

Flowchart:

Flowchart: Separate odd and even integers in separate arrays

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C# Sharp to separate odd and even integers in separate arrays.
Next: Write a program in C# Sharp to sort elements of the array in descending order.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.