问答详情
源自:7-1 编程练习

为什么不能运行那?

package ch01;


public class ScoresSort {


public static void main(String[] args) {

// TODO Auto-generated method stub

/*

 * 要求:

 * 1、 考试成绩已保存在数组 scores 中,数组元素依次为 89 , -23 , 64 , 91 , 119 , 52 , 73

 * 2、 要求通过自定义方法来实现成绩排名并输出操作,将成绩数组作为参数传入

 * 3、 要求判断成绩的有效性( 0—100 ),如果成绩无效,则忽略此成绩

 */

int[] scores={ 89 , -23 , 64 , 91 , 119 , 52 , 73};

ScoresSort sort=new ScoresSort();

sort.getSort(scores);

}




void getSort(int[] a){

int i,del;

for(i=0;i<a.length;i++){

if(a[i]<0||a[i]>100) 

del=i;

}

i=0;

  while(i>del){

  a[i-1]=a[i];

  i++;

  }

  for(int j=0;j<a.length;j++)

  System.out.println(a[j]);

   

}

}


提问者:慕粉3665627 2016-07-23 10:31

个回答

  • 菜花大侠
    2016-07-23 13:22:53

    方法定义的不对  public呢 ?