출처 : https://www.acmicpc.net/problem/2577
쉬운 문제이므로 코드만 올립니다
public class Q2577 { public static void main(String[] args) { int arr[] = new int[10]; Scanner in = new Scanner(System.in); int a = in.nextInt(); int b = in.nextInt(); int c = in.nextInt(); int result = a*b*c; String str = Integer.toString(result); for(int i=0; i<str.length(); i++) { arr[str.charAt(i)-'0']++; } for(int i=0; i<arr.length; i++) { System.out.println(arr[i]); } } }
단계별로 풀어보기 - 1차원 배열 사용하기 끝
'짱구 굴리기 (Q) - ' 카테고리의 다른 글
[백준 11718] 그대로 출력하기 (0) | 2019.01.22 |
---|---|
[백준 2675] 문자열 반복 (0) | 2019.01.19 |
[백준 10039] 평균 점수 (0) | 2019.01.18 |
[백준 2920] 음계 (0) | 2019.01.18 |
[백준 2908] 상수 (0) | 2019.01.18 |