반응형
<코드>
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int num = A*B*C;
int[] arr = new int[10];
while (num != 0) {
arr[num%10]++;
num /= 10;
}
for (int i = 0; i < 10; i++) {
System.out.println(arr[i]);
}
}
}
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 1546번 - 평균 (0) | 2021.09.17 |
---|---|
[JAVA] 백준 3052번 - 나머지 (0) | 2021.09.17 |
[JAVA] 백준 2562번 - 최댓값 (0) | 2021.09.17 |
[JAVA] 백준 10818번 - 최소, 최대 (0) | 2021.09.17 |
[JAVA] 백준 1110번 - 더하기 사이클 (0) | 2021.09.17 |