728x90
반응형
문제는 다음과 같습니다.
https://www.acmicpc.net/problem/2577
import java.util.Scanner; public class Test2577 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num[] = new int[10]; int array[] = new int[3]; int result = 1; for(int i=0; i<3; i++){ array[i] = sc.nextInt(); } result = array[0] * array[1] * array[2]; //System.out.println(result); while(result>0) { int chk = result % 10; //나머지를 chk번째 배열에 넣어 1씩 추가 result = result / 10; num[chk] += 1; } for(int i=0; i<num.length; i++){ System.out.println(num[i]); } } }
결과는 다음과 같습니다.
728x90
반응형
'프로그래밍 > 알고리즘' 카테고리의 다른 글
백준 알고리즘 14501번 퇴사!! (0) | 2017.10.08 |
---|---|
백준 알고리즘 8958번 OX퀴즈!! (0) | 2017.10.07 |
백준 알고리즘 1149번 RGB거리!! (0) | 2017.10.07 |
카카오톡 모의 테스트!! (0) | 2017.09.24 |
백준 알고리즘 11053번 가장 긴 증가하는 부분 수열 !! (0) | 2017.09.17 |