Sorting 10 Integer Numbers in C#

This C# program asks the user to input 10 integer numbers, each ranging from -1000 to 1000. After collecting all the numbers, the program sorts them in ascending order and then displays the sorted list. This is a simple exercise in using arrays and sorting methods to manage and organize data input by the user.



Group

C# Arrays, Structures and Strings

Objective

1. Create an array to store 10 integer numbers.
2. Ask the user to input 10 integers (within the range of -1000 to 1000).
3. Sort the array of integers in ascending order.
4. Display the sorted integers in the output.

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

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    static void Main()
    {
        // Declare an array to store 10 integers
        int[] numbers = new int[10];

        // Ask the user to input 10 integers
        Console.WriteLine("Please enter 10 integers (between -1000 and 1000):");

        // Collect the integers from the user
        for (int i = 0; i < numbers.Length; i++)
        {
            Console.Write($"Enter number {i + 1}: ");
            numbers[i] = int.Parse(Console.ReadLine());

            // Validate that the number is within the range
            while (numbers[i] < -1000 || numbers[i] > 1000)
            {
                Console.WriteLine("Number must be between -1000 and 1000.");
                Console.Write($"Enter number {i + 1} again: ");
                numbers[i] = int.Parse(Console.ReadLine());
            }
        }

        // Sort the array in ascending order
        Array.Sort(numbers);

        // Display the sorted numbers
        Console.WriteLine("\nThe sorted numbers are:");
        foreach (int num in numbers)
        {
            Console.Write(num + " ");
        }
    }
}

 Output

Please enter 10 integers (between -1000 and 1000):
Enter number 1: 25
Enter number 2: -100
Enter number 3: 450
Enter number 4: 999
Enter number 5: 10
Enter number 6: -999
Enter number 7: 0
Enter number 8: 500
Enter number 9: 12
Enter number 10: 0

The sorted numbers are:
-999 -100 0 0 10 12 25 450 500 999

Share this C# Exercise

More C# Practice Exercises of C# Arrays, Structures and Strings

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Randomly Placing Characters in a 2D Array in C#

    This C# program declares a 70x20 two-dimensional array of characters and randomly places 80 "X" characters in various positions within the array. After the random placement, it dis...

  • Drawing a Circumference in a 2D Array in C#

    In this C# program, we declare a 70x20 two-dimensional array of characters and "draw" a circumference with a radius of 8 inside it. The program calculates the points that make up t...

  • Managing Computer Program Records in C#

    In this C# program, we will create a system to store and manage up to 1000 records of computer programs. Each program will have the following attributes: Name, Category, Descriptio...

  • Managing To-Do Tasks in C#

    This C# program helps to manage a list of to-do tasks by storing up to 2000 tasks. For each task, the program keeps track of the date (day, month, year), a description of the task,...

  • Domestic Accounting System in C#

    This C# program is designed to manage expenses and revenues for a small domestic accounting system. The program allows the user to store up to 10,000 records for expenses and reven...

  • Displaying Numbers in Reverse Order in C#

    This exercise focuses on working with arrays in C#. The program will prompt the user to enter 5 numbers, which will be stored in an array. Once all the numbers have been entered, t...