这个是根据你的程序改的,已经编译通过 import java.util.*; public class test5 { public static void main(String[] args) { Scanner input= new Scanner(System.in); System.out.print("请输入数组的长度:"); int num=input.nextInt(); int[] score=new int[num]; for(int i=0;i
int array[]={121,5,15,15,15,12};//定义一个数组
ReverseSort sorter=new ReverseSort();//new了一个ReverseSort对象
sorter.sort(array);//调用ReverseSort中的sort方法对array进行反转排序
PS:sort()方法中调用了showArray方法,输出反转后的数组。