为了账号安全,请及时绑定邮箱和手机立即绑定

import java.util.Arrays;

public class HelloWorld {    

    public static void main(String[] args) {

        

// 定义一个整型数组,保存成绩信息

int[] scores = { 89, 72, 64, 58, 93 };        

// 对Arrays类对数组进行排序

Arrays.sort(scores);      

        

// 使用foreach遍历输出数组中的元素

for (int score : scores) {

System.out.println(score);

}

}

}



正在回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信