[SWEA] 2068. 최대수 구하기(JAVA)
1234567891011121314151617181920// 2068. 최대수 구하기import java.util.Scanner; public class Solution2068 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int i=0; i BestSolution1234567891011121314import java.util.*;public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int ..
PS/Problem_Solving
2019. 4. 15. 21:58