package sort;
//¼òµ¥Ñ¡ÔñÅÅÐò
public class SelectSortTest
{
public static void main(String[] args)
{
SelectSort s = new SelectSort();
int[] array ={9,1,5,8,3,7,4,6,2};
s.selectSort(array);
s.display(array);
}
}
class SelectSort
{
public void selectSort(int[] a)
{
for(int i=0; i