https://www.acmicpc.net/problem/2577
import java.util.Scanner;
public class Main {
public static void main (String [] args ) {
int a = 0;
int b = 0;
int c = 0;
int mul = 0;
Scanner scan = new Scanner (System.in);
a = scan.nextInt();
b = scan.nextInt();
c = scan.nextInt();
mul = a*b*c ;
String parseMul = Integer.toString(mul);
int [][] arr = new int [10][2];
for(int j = 0 ; j <10 ; j++) {
for (int i = 0; i <parseMul.length(); i ++ ) {
// System.out.println("parseMul : "+Character.getNumericValue((parseMul.charAt(i))));
// System.out.println("check num : "+Integer.toString(j));
// System.out.println("is Equal : "+ (Character.getNumericValue(parseMul.charAt(i)) == j));
//
if(Character.getNumericValue((parseMul.charAt(i))) == j){
arr[j][1]++;
}
}
System.out.println(arr[j][1]);
}
}
}
'알고리즘 > 심심풀이 문제풀기' 카테고리의 다른 글
[심심풀이 백준문제풀기] 2908번 상수 (0) | 2018.02.24 |
---|---|
[심심풀이 백준문제풀기]10809번 알파벳 찾기 (0) | 2018.02.24 |
[심심풀이 백준문제풀기]10039번 평균 점수 (0) | 2017.12.27 |
[심심풀이 백준문제풀기]8958번 OX문제 (0) | 2017.12.26 |
[심심풀이 백준문제풀기] 1152번 단어의 개수 (0) | 2017.12.22 |