public class selectionSort{

public static void main(String[]args){

double[] array = {1, 9, 4.5, 6.6, 5.7,};
selectionSort(array);

}

...