본문 바로가기
알고리즘/문자열 처리, 기타 자료구조

[java 백준] 브론즈 2/ 10808번 알파벳 개수

by Meaning_ 2021. 8. 24.
728x90
반응형

https://www.acmicpc.net/problem/10808

 

10808번: 알파벳 개수

단어에 포함되어 있는 a의 개수, b의 개수, …, z의 개수를 공백으로 구분해서 출력한다.

www.acmicpc.net

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import java.io.IOException;
import java.util.Scanner;
 
public class Main {
    public static String n;
    public static int[] arr;
 
    public static void main(String[] args) throws NumberFormatException, IOException {
 
        Scanner sc = new Scanner(System.in);
 
        arr = new int[26];
        String s = sc.next();
        // String[]str=s.split("");
        for (int i = 0; i < s.length(); i++) {
            arr[s.charAt(i) - 97]++;
        }
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
 
    }
 
}
cs
728x90
반응형

댓글