第一行先输入随机整数的个数 N 。 接下来的 N 行每行输入一个整数,代表明明生成的随机数。 具体格式可以参考下面的"示例"。
import java.util.Iterator;
import java.util.Scanner;
import java.util.TreeSet;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
? ? public static void main(String[] args) {
? ? ? ? Scanner sc = new Scanner(System.in);
? ? ? ? int num = sc.nextInt();
? ? ? ? TreeSet set = new TreeSet();
? ? ? ? //输入
? ? ? ? for(int i = 0; i < num; i++){
? ? ? ? ? ? set.add(sc.nextInt());
? ? ? ? }
? ? ? ? //输出
? ? ? ? Iterator iterator = set.iterator();
? ? ? ? while (iterator.hasNext()){
? ? ? ? ? ? System.out.println(iterator.next());
? ? ? ? }
? ? }
}