我正在尝试对数字列表进行排序,使其显示如下(高于平均数字旁边有一个星号):
53
56
68
78*
79*
80*
89*
90*
100*
我已经尝试过这个(分数是我的数字数组):
for (int i = 0; i < scores.length; i++) {
if (scores[i] > average) {
System.out.println(scores[i] + "*");
}
}
和这个:
for (double element : scores) {
int aboveAvg = 0;
for (int i = 0, i <scores.length; i++){
if (scores[i] > average) {
aboveAvg++;
System.out.println(element + "*");
}
}
}
慕村225694
相关分类