Eggs Sunny Side Up
본문 바로가기
Algorithm/Java Festival

[Java Festival] 알파벳의 빈도를 대소문자 구별없이 카운트하기

by guswn100059 2023. 3. 13.

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

	}
}

댓글