🎈문제 https://www.acmicpc.net/problem/9086 💬설명 첫글자의 위치는 0, 마지막 글자의 위치는 .length-1이다. 마지막 글자는 .length-1부터 .length 임을 햇갈리지 말자. ⌨️ CODE import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int k = sc.nextInt(); String[] st = new String[k]; for(int i = 0 ; i < k ; i++) { st[i] = sc.next(); } for(int j= 0 ; j < k ; j++) { System.out...