欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

输入一个字符串,统计每个字符出现的次数

程序员文章站 2022-04-17 22:44:24
...
public class charCount{
    public static void main(String []agrs){
        String strs1="asweasdxc";
        int count=0;
        while(strs1.length()>0){
            //将第一个字母变为字符串
            String first  = String.valueOf(strs1.charAt(0));
            //将第一个字符相同的替换为空字符串
            String newString = strs1.replaceAll(first, "");
            count = strs1.length() - newString.length();
            strs1 = newString;
            System.out.println(first+"出现了"+count+"次");
        }
    }
}