为什么在我的机器上这个程序运行不了!说是有错误...但在教学平台上是对的
package com.HelloWorld; import java.util.Arrays; public class HelloWorld { public static void main(String[] args) { int[] scores = { 89, 72, 64, 58, 93 }; Arrays.sort(scores); for (int score : scores ) { System.out.println(score); } } }