// P.530 import java.util.Scanner; public class SelectionSortDemo1 { public static final int MAX = 10; public static void main(String[] args) { Scanner kb = new Scanner(System.in); int[] b = new int[MAX]; for(int i=0; i