程序运行结果最后一行为什么会显示数组

来源:7-1 编程练习

钱序猿

2018-09-21 21:43

考试成绩的前三名为:
91
89
73
[I@15db9742

import java.util.Arrays;

import java.util.Scanner;


public class HelloWorld {

public static void main(String[] args) {

HelloWorld hello=new HelloWorld();

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

System.out.println("考试成绩的前三名为:");

hello.getScores(score);

System.out.println(score);

}

public void getScores(int[] score) {

Arrays.sort(score);

int num=0;

for(int i=score.length-1;i>0;i--) {

if(score[i]<0||score[i]>100) {

continue;

}

num++;

if(num>3) {

break;

}

System.out.println(score[i]);

}

}

}


写回答 关注

1回答

  • chen_fu
    2018-09-22 16:26:55

    你的main方法里面的最后一行 System.out.println(scores);是把scores数组输出了


Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题