Arrays类用不了,已经引入了util包,而且scanner也能正常使用, 报这个错Arrays cannot be resolved 大佬们帮帮忙
import java.util.*;Arrays cannot be resolved 我是导入了ArraysList的这个包的,为什么我这里..7个回答
public class Hello {Arrays类3个回答 已采纳回答
public static void main(String[] args) {
int[] scores = { 89, 72, 64, 58, 93 };
Arrays.sort(scores);
for(int score : scores ) {
System.out.println(score);
}
}
}