1 import java.util.Arrays; 2 public class Exercise_L8 { 3 public static void main(String[] args) { 4 Exercise_L8 HELLO = new Exercise_L8(); 5 int[] scores = {89,-23,64,91,119,52,73}; 6 System.out.println("First 3 Mark is:"); 7 HELLO.printScore(scores); 8 } 9 public void printScore(int[] scores){ 10 int count = 0; 11 int i = 0; 12 Arrays.sort(scores); 13 while (count < 3) { 14 if (scores[i]<=100 && scores[i]>=0) 15 { 16 System.out.println(scores[i]); 17 count++; 18 } 19 i++; 20 } 21 } 22 }
原文:http://www.cnblogs.com/superherocheng/p/6254176.html