程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> java源碼-這個java程序設計題目怎麼寫,求源碼⋯⋯⋯⋯⋯⋯⋯⋯

java源碼-這個java程序設計題目怎麼寫,求源碼⋯⋯⋯⋯⋯⋯⋯⋯

編輯:編程解疑
這個java程序設計題目怎麼寫,求源碼⋯⋯⋯⋯⋯⋯⋯⋯

⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯圖片說明

最佳回答:


/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[][] data = new int[n][];
        int[] result = new int[n];
        for (int i = 0; i < n; i++)
        {
            int m = in.nextInt();
            data[i] = new int[m];
            int o = 0;
            for (int j = 0; j < m; j++)
            {
                int l = in.nextInt();
                Boolean b = false;
                for (int k : data[i])
                    if (k == l) b = true;
                if (!b) data[i][o++] = l;
            }
            Arrays.sort(data[i]);
            result[i] = data[i][data[i].length - in.nextInt()];
        }
        for (int item : result)
            System.out.println(item);
        }
} 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved