Sort data Learn programming C#

Lesson:

Arrays, Structures and Strings


Exercise:

Sort data


Objetive:

Create a C# program to ask the user for 10 integer numbers (from -1000 to 1000), sort them and display them sorted.


Code:

using System;
public class exercise91
{
    public static void Main()
    {
        int total = 9;
        int[] data = new int[total];
        int i, j, aux;

        for (i = 0; i < total; i++)
        {
            Console.Write("Enter number {0}: ", i + 1);
            data[i] = Convert.ToInt32(Console.ReadLine());
        }

        for (i = 0; i < total - 1; i++)
        {
            for (j = i + 1; j < total; j++)
            {
                if (data[i] > data[j])
                {
                    aux = data[i];
                    data[i] = data[j];
                    data[j] = aux;
                }
            }
        }
        Console.Write("Sorted:");
        foreach (int valor in data)
            Console.Write("{0} ", valor);
    }
}

Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.