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

我这个错在哪里,输出的时候又一个119。

/*
要求:

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

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

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

提示:
 1、 在方法中使用 Arrays 类的 sort( ) 方法对数组进行排序,默认按升序排列,注意 Arrays 类的使用需要导入 java.util.Arrays
 2、 由于只需要输出考试成绩的前三名,所以定义一个变量,统计有效成绩的前三名的数量
 3、 使用 for 循环遍历数组中的元素,由于要输出的是前三名成绩,所以从后往前遍历,即倒序遍历 如 for ( int i = scores.length - 1; i >= 0; i-- ) { }
 4、 判断成绩的有效性,如果成绩小于 0 或大于 100 ,则使用 continue 忽略此成绩
 5、 如果成绩有效,则有效成绩数加 1 。判断有效成绩的个数,如果有效成绩数大于 3 ,则结束循环,只输出成绩的前三名

提示:
 1、 定义一个成绩数组 scores ,保存预定的考试成绩 89 , -23 , 64 , 91 , 119 , 52 , 73
 2、 调用自定义方法,传入成绩数组,完成功能
 */
package Projects;
import java.util.Arrays;
public class HelloWorld {
    //完成 main 方法
    public static void main(String[] args) {
        int[] scores = {89,-23,64,91,119,52,73};
        HelloWorld A = new HelloWorld();
        A.Top3(scores);
    }
    //定义方法完成成绩排序并输出前三名的功能
    public void Top3 (int[] scores){
        Arrays.sort(scores);
        int okScorees = 0 ;
        System.out.println("成绩前三为:");
        for ( int i = scores.length - 1; i >= 0; i-- ) {
            if (scores[i]>100&&scores[i]<0){
                continue;
            }
            okScorees++;
            if(okScorees>3){
                break;
            }
            System.out.println(scores[i]);
        }
    }
}

提问者:慕瓜9481380 2019-09-18 11:53

个回答

  • 慕虎4362871
    2019-09-23 22:58:43

    &&改为||

  • 王延
    2019-09-23 14:40:06

     public void Top3 (int[] scores){
            Arrays.sort(scores);
            int okScorees = 0 ;
            System.out.println("成绩前三为:");
            for ( int i = scores.length - 1; i >= 0; i-- ) {
                if (scores[i]>100||scores[i]<0){
                    continue;
                }
                okScorees++;
                if(okScorees>3){
                    break;
                }
                System.out.println(scores[i]);
            }
        }


  • 牛掰的小渣渣
    2019-09-18 16:10:11

    if (scores[i]>100&&scores[i]<0)

    这里不要用“与”,要用“或”,因为只要满足一个就结束本次循环