Thursday, 15 October 2015

Sort the Element of Array without using function in C#

using System;
class Program
{
    static void Main()
    {
        int[] testarray = new int[] { 10, 5, 15, 85, 25, 65, 84, 17, 28 };
 
        int temp = 0;

        for (int i = 0; i < testarray.Length; i++)
        {
            for (int j = 0; j < testarray.Length - 1; j++)
            {
                if (testarray[j] > testarray[j + 1])
                {
                    temp = testarray[j + 1];
                    testarray[j + 1] = testarray[j];
                    testarray[j] = temp;
                }
            }
        }
       
        foreach (int i in testarray)
        {
            Console.Write(i + "\t");
        }
        Console.WriteLine("\n");
    }
}

No comments:

Post a Comment