求大神解答,這個錯在哪里了
public static void main(String[] args) {
// TODO Auto-generated method stub
//創(chuàng)建一個學生成績數(shù)組:
int[] scores = {77,96,35,48,79,98,65,77};
Students stu = new Students();
stu.show(scores);
}
//先創(chuàng)建一個方法,用來保學生成績;因為需要傳入固定成績,需要運用數(shù)組;
public void show(int [] scores){
//定義一個變量來保存學生成績
int a = 0;
Arrays.sort(scores);
for(int i = scores.length; i >= 0; i --){
if(scores[i]<0 || scores[i] > 100){
System.out.println("您輸入的成績有誤,請重新輸入!");
continue;
}else{
a++;
}
if(a>3){
break;
}
System.out.println("前三名的學生成績是:"+ scores[i]);
}?
2017-06-12
package com.hwadee.day612;
import java.util.Arrays;//首先你沒有導入數(shù)組包,你在數(shù)組中用到了數(shù)組的排序你就需要導入數(shù)組包
public class Test {
public static void main(String[] args) {
// TODO Auto-generated method stub
//創(chuàng)建一個學生成績數(shù)組:
int[] scores = {77,96,35,48,79,98,65,77};
Students stu = new Students();//你這個創(chuàng)建了一個Students對象,但是你的Students類不純在。
stu.show(scores);//這是你對象的成員方法,但是你并沒有定義在Students類里面。
}
}
class Students{
//先創(chuàng)建一個方法,用來保學生成績;因為需要傳入固定成績,需要運用數(shù)組;
public void show(int [] scores){
//定義一個變量來保存學生成績
int a = 0;
Arrays.sort(scores);
for(int i = scores.length - 1; i >= 0; i --){//數(shù)組下標是從0開始的,所以起始位置應該是scores.length-1,而不是scores.length不然會報數(shù)組下標越界錯誤
if(scores[i]<0 || scores[i] > 100){
System.out.println("您輸入的成績有誤,請重新輸入!");
continue;
}else{
a++;
}
if(a>3){
break;
}
System.out.println("前三名的學生成績是:"+ scores[i]);
}
}
}
在上面就是你的所有問題所在,望采納。
2017-06-12
Arrays.sort不能用,沒有加impot java.util.Arrays