import java.util.*; class SelSort1 // Selection sort on a given array of integers { public static void main(String[] args) throws Exception { Scanner input = new Scanner(System.in); System.out.println("Enter some numbers (all on one line):"); String line = input.nextLine(); String[] numbers = line.split(" "); Integer[] a = new Integer[numbers.length]; for(int i=0; i