L


私信TA

用户名:1302759659

访问量:2502

签 名:

等  级
排  名 910
经  验 3506
参赛次数 0
文章发表 13
年  龄 17
在职情况 学生
学  校 广西英华国际职业学院
专  业 软件技术

  自我简介:

解题思路:

注意事项:

参考代码:
import java.util.Arrays;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
   public static void main(String[] args) {
       //去重和排序
       TreeSet set=new TreeSet();
       Scanner sc=new Scanner(System.in);
       int n=sc.nextInt();
       int arr[]=new int[n];
       for (int i = 0; i < n; i++) {
           set.add(arr[i]=sc.nextInt());
       }
       System.out.println(set.size());
       for (Object x:set) {
           System.out.print(x+" ");
       }
   }
}


 

0.0分

1 人评分

  评论区

  • «
  • »