728x90
SMALL

자바

 

 

 

 

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]);
        }
            
        }
    }
}

728x90

설정

트랙백

댓글