
** IN JAVA **
I just want to add the main method according to these commands:
1- Array must be user typed
2- Write Array print statement before arranging the elements and after writing the elements
For ex:
System.out.println(“Array after sorting is: “);
THE CODE IS:
void selectionSort(int List[])
{
int temp, min;
int size = List.length;
for (int i = 0; i < size; i++){
min = i;
for (j = i + 1; j < size; j++)
{
if (List[j] < List[min])
{min = j; }
}
temp = List[min];
List[min] = List[i]; //swap
List[i] = temp;
}
}

We know that Java is an Object Oriented Programming Language.
It means, here everything is in the form of class and objects.
So, first of all, we need to create a class.
I have created a class named "Main".
Then we have to place the selectionSort() method inside this class.
After that, we have to create the main method.
During program execution, the Java Virtual Machine (JVM) calls the main method.
In the main method, we have to prompt the user to enter the array size and then create the array of the specified size.
Then we have to prompt the user to enter the array elements. [Enter only integer values as array is of "int" type]
Display the array elements before sorting.
After that, we create an object of the Main class and call the selectionSort() method passing the created array as the parameter.
Then we display the sorted array elements.
Step by stepSolved in 3 steps with 4 images

- 1. Array splitting in Java Create an integer array with 10 integer numbers, initialize the array arbitrarily but make sure there are both positive and negative integers. Then generate two arrays out of the original array, one array with all natural numbers (positive numbers or zeros) and another one with all negative numbers. Print out the number of elements and the detailed elements in each array.arrow_forward5arrow_forwardIn Javaarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





