https://www.acmicpc.net/problem/9086
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int i = 0 ; i < T ; i++) {
String text = sc.next();
System.out.print(text.charAt(0));
System.out.println(text.charAt(text.length() -1));
}
sc.close();
}
}
'프로그래밍언어 > 알고리즘' 카테고리의 다른 글
백준 2675 문자열 반복_JAVA (0) | 2023.06.07 |
---|---|
백준 10809 알파벳 찾기_JAVA (1) | 2023.06.07 |
백준 2734 단어 길이 재기_JAVA (0) | 2023.05.09 |
백준 27866 문자와 문자열_JAVA (0) | 2023.05.09 |
백준 1546 평균_JAVA (0) | 2023.05.09 |