소스 코드
package com.company;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int inputA = sc.nextInt();
int inputB = sc.nextInt();
int inputC = sc.nextInt();
sc.close();
int[] counts = new int[10];
int sum = inputA * inputB * inputC;
while(sum >0) {
counts[sum%10]++;
sum = sum/10;
}
for(int i=0; i<counts.length; i++) {
System.out.println(counts[i]);
}
}
}
출력 결과
'5. 알고리즘 > 5_3 백준' 카테고리의 다른 글
[백준 알고리즘] 백준 1546번 평균 자바(JAVA) (0) | 2020.02.10 |
---|---|
[백준 알고리즘] 백준 3052번 나머지 자바(JAVA) (0) | 2020.02.10 |
[백준 알고리즘] 백준 2562번 최댓값 자바(JAVA) (0) | 2020.02.10 |
[백준 알고리즘] 백준 10818번 최소, 최대 자바(JAVA) (0) | 2020.02.10 |
[백준 알고리즘] 백준 10871번 X보다 작은 수 자바(JAVA) (0) | 2020.02.09 |