總復習編程練習
public class HelloWorld {
?import java.util.Arrays ??
? ? //完成 main 方法
? ? public static void main(String[] args) {
? ? ?HelloWord hello=new HelloWorld(); ??
? ? ? ? object=hello.sort();
? ? ? ? System.out.println("考試成績前三名為:");
? ? ? ? System.out.println(object);
? ? }
? ??
? ? //定義方法完成成績排序并輸出前三名的功能
? ? public int sort(){
? ? ? ? int scores[]={89,-23,64,91,119,52,73};
? ? ? ? int count=0;
? ? ? ? scores.sort;
? ? ? ? int i;
? ? ? ? for(i=6;i>=0;i--){
? ? ? ? ? ? System.out.println(scores[i]);
? ? ? ? ? ? if(scores[i]<0||scores[i]>100){
? ? ? ? ? ? ? ? continue;
? ? ? ? ? ? }
? ? ? ? count++;
? ? ? ? if (count>=3){
? ? ? ? ? ? break;
? ? ? ? }
? ? ? ? }
? ? ? ? System.out.println(scores.toString);
? ? }
過不了,請問各位錯在哪啦
2016-02-04
求最佳
2016-02-04
不得不說你很粗心
import java.util.Arrays;
public class HelloWorld {
? ??
? ? //完成 main 方法
? ? public static void main(String[] args) {
? ? HelloWorld hello=new HelloWorld(); ??
? ? ? ??
? ? ? ? System.out.println("考試成績前三名為:");
? ? ? ? System.out.println(hello.sort());
? ? }
? ??
? ? //定義方法完成成績排序并輸出前三名的功能
? ? public int[] sort(){
? ? ? ? int scores[]={89,-23,64,91,119,52,73};
? ? ? ? int count=0;
? ? ? ? Arrays.sort(scores);
? ? ? ? int i;
? ? ? ? for(i=6;i>=0;i--){
? ? ? ? ? ? System.out.println(scores[i]);
? ? ? ? ? ? if(scores[i]<0||scores[i]>100){
? ? ? ? ? ? ? ? continue;
? ? ? ? ? ? }
? ? ? ? count++;
? ? ? ? if (count>=3){
? ? ? ? ? ? break;
? ? ? ? }
? ? ? ? }
? ? ? ? System.out.println(Arrays.toString(scores));
? ? ? ? return scores;
? ? }
}
這是改了之后的,你可以對比一下,但是這段代碼不能達到題目的要求,我不知道怎么做,我只能找一下錯誤,僅此而已,希望能幫到你
2016-02-04
1)?import java.util.Arrays 這條語句要在最外面;
2)方法定義在主函數(shù)main里面了,應該在外面;
3)object哪里來的,都沒有定義;
4)方法的類型是int,但沒看到你用return做輸出;
5)scores.sort;這條代碼是為了排序吧,需要重新看一下排序的方發(fā);
6)System.out.println(scores.toString);toString后面沒加參數(shù);
、、、