函数不能被调用,编译通过,就是运行的时候不出结果。刚刚学Java没多久。[Java] 纯文本查看 复制代码 class ArrayDemo6
{
public static void main(String[] args)
{
int [] arr={45,58,79,16,5,46,36,749,48};
selectSort(arr);
//System.out.println(selectSort(int [] arr));
}
public static void selectSort(int [] arr)
{
for (int x=0;x<arr.length-1 ;x++ )
{
for (int y=x+1;y<arr.length;y++ )
{
if (arr[x]>arr[y])
{
int temp=arr[x];
arr[x]=arr[y];
arr[y]=temp;
}
}
}
}
}
|