import java.util.Scanner;
public class d {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] count = new int[26];
System.out.print("입력 >> ");
String target = sc.nextLine();
target = target.toLowerCase();
target = target.replace(" ", "");
for(int i = 0; i < 26; i++) {
count[i] = 0;
}
for(int i = 0; i < target.length(); i++) {
count[target.charAt(i)-97]++;
}
for(int i = 0; i < 26; i++) {
System.out.println((char)(i+97)+" : "+count[i]);
}
}
}
'Algorithm > Java Festival' 카테고리의 다른 글
[Java Festival] 2차원 배열을 왼쪽으로 90도 회전하여 출력 (0) | 2023.03.13 |
---|---|
[Java Festival] 8자리 정수를 입력받아 정수의 합을 출력 (0) | 2023.03.13 |
[Java Festival] N과 X의 정수를 입력받고 X보다 작은 수만 출력 (0) | 2023.03.13 |
[Java Festival] 문자열 형태의 2진수를 10진수로 변환 (0) | 2023.03.11 |
[Java Festival] (0) | 2023.03.11 |
댓글