import java.util.Scanner;
public class Main
{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
System.out.print("전화번호 : ");
String str = scan.nextLine();
str = str.replace("-", "");
int[] numArr = new int[11];
int[] counter = new int[11];
for(int i=0; i<str.length(); i++){
numArr[i] = str.charAt(i) - '0';
}
for(int i=0; i<numArr.length; i++){
counter[numArr[i]]++;
}
for(int i=0; i<numArr.length; i++){
if(counter[i] != 0){
System.out.println(i + "의 개수 :" + counter[i]);
}
}
System.out.println("2019E7028 김승종");
scan.close();
}
}
'유수봉 교수님 자바' 카테고리의 다른 글
[Java] 점수 3개에 대한 합계, 평균, 등급, 석차 처리후 정렬 (1) | 2023.10.28 |
---|---|
[Java] 정수 4 개를 입력 받아 가장 큰 값을 출력 (0) | 2023.10.27 |
[JAVA] 369 게임을 한글로 출력하고, 박수를 몇 번 쳤는지 출력 (0) | 2023.10.27 |
유수봉 교수의 자바 07 (0) | 2023.10.18 |
댓글