You will get email Reply within few hours

Wednesday, 24 April 2013

Create a program that allows the users to enter 10 integer values.



1. Create a program that allows the users to enter 10 integer values. The program should save
the values in an array. Print out the values in the order that they were entered. Then, call a
method to sort the array in ascending order. Finally, print out the values in their sorted order.
You may use either the selection sort or insertion sort from Chapter 8 of our textbook.
Export your project as a zip file and upload it to Blackboard.

Below is some sample output:

Enter the 10 values to sort...
Enter value #1:5
Enter value #2:9
Enter value #3:2
Enter value #4:1
Enter value #5:0
Enter value #6:7
Enter value #7:4
Enter value #8:3
Enter value #9:8
Enter value #10:6
Here are your numbers (unsorted):
5 9 2 1 0 7 4 3 8 6
Here are your numbers (sorted):
0 1 2 3 4 5 6 7 8 9

Need Solution https://gum.co/Fffw