삐까냥의 파도타기

10808번) 알파벳 개수 본문

코딩/백준 알고리즘

10808번) 알파벳 개수

금손형아 2017. 11. 11. 15:47

문제 출처 : https://www.acmicpc.net/problem/10808



import java.util.Scanner;


public class Q10808 {


public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

String string = sc.nextLine();

int[] alphabet = new int[26];

for ( int i = 0; i < string.length(); i++ ) {

int temp = Integer.valueOf(string.charAt(i)) - 97;

alphabet[temp]++;

}

for ( int i = 0; i < 26; i++ ) {

System.out.print(alphabet[i] + " ");

}


}

}

 



'코딩 > 백준 알고리즘' 카테고리의 다른 글

2743번) 단어 길이 재기  (0) 2017.11.11
1032번) 명령 프롬프트  (0) 2017.11.11
1100번) 하얀 칸  (0) 2017.11.11
2908번) 상수  (0) 2017.11.11
1157번) 단어 공부  (0) 2017.11.11