返回列表 發帖

APCS 實作題 10603 - 4 基地台

本帖最後由 李泳霖 於 2022-12-3 10:02 編輯

c575: APCS 2017-0304-4基地台

1060304APCS實作題_4.pdf

  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;
  4. import java.util.TreeSet;


  5. public class P4 {
  6.         BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
  7.         String raw[];      
  8.         int n,k;
  9.         TreeSet<Integer> p=new TreeSet<Integer>();
  10.         P4() throws IOException{
  11.                 raw=br.readLine().split(" ");
  12.                 n=Integer.parseInt(raw[0]);
  13.                 k=Integer.parseInt(raw[1]);
  14.                 raw=br.readLine().split(" ");
  15.                 for (int i = 0; i < n; i++)
  16.                         p.add(Integer.parseInt(raw[i]));
  17.                 System.out.println(p);
  18.         }




  19.         public static void main(String[] args) throws IOException {
  20.                 new P4();

  21.         }

  22. }
複製代碼
istak.teach2@gmail.com

此帖僅作者可見
Vincent

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Vincent

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表