using System;
class Program {
static void Main(string[] args) {
string stringNumber = Console.ReadLine();
int intNumber = System.Convert.ToInt32(stringNumber);
string[] result = new string[intNumber];
for (int i = 0; i < intNumber; i++) {
string testCase = Console.ReadLine();
char[] array = testCase.ToCharArray();
result[i] = array[0].ToString() + array[array.Length - 1].ToString();
}
foreach (string c in result) {
Console.WriteLine(c);
}
}
}
문제 출처
https://www.acmicpc.net/problem/9086
'ComputerScience > Coding Test' 카테고리의 다른 글
백준 2420번: 사파리월드 (0) | 2022.11.12 |
---|---|
백준 11382번: 꼬마 정민 (0) | 2022.11.12 |
백준 11718번: 그대로 출력하기 (0) | 2022.11.12 |
백준 2754번: 학점계산 (0) | 2022.11.12 |
백준 2744번: 대소문자 바꾸기 (0) | 2022.11.12 |