返回列表 發帖

高中生程式解題系統

B965:
  1. import java.io.*;
  2. import java.util.*;


  3. public class B965 {
  4.         B965()
  5.         {
  6.                 StreamTokenizer cin = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));
  7.                 PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));
  8.                 try{
  9.                         while(cin.nextToken()!=StreamTokenizer.TT_EOF)
  10.                         {
  11.                                 int r = (int)cin.nval;
  12.                                 cin.nextToken();
  13.                                 int c = (int)cin.nval;
  14.                                 cin.nextToken();
  15.                                 int m = (int)cin.nval;
  16.                                 int[] mn = new int[m];
  17.                                 int[][] b = new int[r][c];
  18.                                 //r , c 行列數
  19.                                 for(int i = 0; i < r; i++)
  20.                                 {
  21.                                        
  22.                                         for(int j = 0; j < c; j++)
  23.                                         {
  24.                                                 cin.nextToken();
  25.                                                 b[i][j] = (int)cin.nval;
  26.                                                 if(j != 0)
  27.                                                         out.print(" ");
  28.                                                 out.print(b[i][j]);
  29.                                         }out.println();
  30.                                 }
  31.                                 for(int i = 0; i<mn.length; i++)
  32.                                                 {
  33.                                                         cin.nextToken();
  34.                                                         mn[i] = (int)cin.nval;
  35.                                                 }
  36.                                 out.println();
  37.                                 out.flush();
  38.                               
  39.                         }
  40.                 }catch(Exception e){}
  41.                
  42.                
  43.         }
  44.         public static void main(String[] args) {
  45.                 // TODO 自動產生的方法 Stub
  46.                 new B965();      
  47.                
  48.         }

  49. }
複製代碼

TOP

  1. import java.io.*;
  2. import java.util.*;


  3. public class B964 {
  4.         B964()
  5.         {
  6.                 StreamTokenizer cin = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));
  7.                 PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));
  8.                 try{
  9.                         while(cin.nextToken()!=StreamTokenizer.TT_EOF)
  10.                         {
  11.                                 int n = (int)cin.nval;
  12.                                 int[] s = new int[n];
  13.                                 for(int i = 0; i<s.length; i++)
  14.                                 {
  15.                                         cin.nextToken();
  16.                                         s[i] = (int)cin.nval;
  17.                                 }
  18.                                 Arrays.sort(s);
  19.                                 for(int i=0;i<s.length;i++)
  20.                                 {
  21.                                         if(i!=0)
  22.                                         {       
  23.                                                 out.print(" ");
  24.                                                 out.flush();
  25.                                         }
  26.                                        
  27.                                         out.print(s[i]);
  28.                                         out.flush();
  29.                                        
  30.                                 }       
  31.                                 if()
  32.                                
  33.                                 out.println();
  34.                                 out.flush();
  35.                                
  36.                         }
  37.                 }catch(Exception e){}
  38.                
  39.                
  40.         }
  41.         public static void main(String[] args) {
  42.                 // TODO 自動產生的方法 Stub
  43.                 new B964();       
  44.                
  45.         }

  46. }
複製代碼

TOP

返回列表