#41109: JAVA AC


712045@st.lths.tc.edu.tw (程式餓靈)

學校 : 嶺東高級中學
編號 : 140198
來源 : [49.213.133.237]
最後登入時間 :
2024-07-22 17:35:19
d634. 魔法卡magic -- jack1 | From: [49.213.133.237] | 發表日期 : 2024-07-04 11:05

import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; import java.util.Arrays; class Test { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String[] input = new String[n]; for (int i = 0; i < n; i++) { input[i] = br.readLine(); } br.close(); Arrays.sort(input); for (String str : input) { System.out.println(str); } } }

 
ZeroJudge Forum