【PAT】乙级1021 个位数统计(java)

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
		String info=br.readLine();
		br.close();
		
		int[] count=new int[10];
		String[] str=info.split("");
		for(String s:str) {
			int i=Integer.parseInt(s);
			count[i]++;
		}
		
		for(int j=0;j<10;j++) {
			if(count[j]!=0)
				System.out.println(j+":"+count[j]);
		}
	}
}

 

你可能感兴趣的:(【PAT】乙级1021 个位数统计(java))