글
백준 9086번 문자열 C#(JAVA)
자바
import java.util.*;
import java.io.*;
public class Main{
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(br.readLine());
for(int i = 0;i<a;i++)
{
String str = br.readLine();
System.out.println(str.charAt(0) +""+ str.charAt(str.length() - 1));
}
}
}
/////////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main() {
string s = Console.ReadLine();
int a = int.Parse(s);
for(int i = 0;i<a;i++)
{
string ss = Console.ReadLine();
Console.WriteLine(ss[0] +""+ ss[ss.Length-1]);
}
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 2675번 문자열 반복 C#(JAVA) (0) | 2023.03.06 |
---|---|
백준 10809번 알파벳 찾기 C#(JAVA) (0) | 2023.03.06 |
백준 2743번 단어 길이 재기 C#(JAVA) (0) | 2023.03.03 |
백준 10811번 바구니 뒤집기 C#(JAVA) (0) | 2023.03.02 |
백준 10813번 공 바꾸기 C#(JAVA) (0) | 2023.03.02 |