336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
백준알고리즘
https://www.acmicpc.net/problem/2902
짜기 귀찮으신 분들은 Ctrl + C, Ctrl + V 하십쇼
import java.util.Scanner; public class Main { public static void main(String args[]) throws Exception { Scanner scan = new Scanner(System.in); String input = scan.nextLine().trim(); String[] strArray = input.split("-"); StringBuffer sb = new StringBuffer(); for(int i=0; i < strArray.length; i++) { sb.append(strArray[i].charAt(0)); } System.out.println(sb); scan.close(); } }
'알고리즘 및 자료구조 > 문제' 카테고리의 다른 글
백준알고리즘 7571 점 모으기 (0) | 2018.05.10 |
---|---|
백준알고리즘 10844번 쉬운 계단 수 (0) | 2018.05.10 |
백준알고리즘 9465번 스티커 (0) | 2018.05.10 |
백준알고리즘 10989번 수 정렬하기 3 (0) | 2018.05.10 |
백준알고리즘 2455번 지능형 기차 (0) | 2018.05.10 |