본문 바로가기
Problem Solving

[백준/BOJ] 2577 숫자의 개수 JAVA

by JYHAN 2020. 7. 6.

[백준/BOJ] 2577 숫자의 개수 JAVA

 

public class BOJ_2577_숫자의개수 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int mul=1, div=1;
		int[] arr = new int[10];
		
		// 입력
		for(int i=0; i<3; i++) {
			int n = sc.nextInt();
			mul*= n;
		}
		
		// 자릿수 카운트
		while(mul>0) {
			arr[mul%10]++;
			mul /= 10;
		}
			
		// 결과 출력
		for(int i=0; i<arr.length; i++) {
			System.out.println(arr[i]);
		}
	}
}

댓글