2577 숫자의 개수 123456789101112131415161718192021import java.util.*; 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 result = a*b*c; String num = Integer.toString(result); int[] count = new int[10]; for(int i=0; i<num.length(); i++) { count[num.charAt(i)-'0']++; } for(int i=0; i<10; i++) { Sys.. 더보기 이전 1 ··· 62 63 64 65 66 67 68 ··· 77 다음