Passion and Patience

Work Hard, Play Hard

导航

HJ10 字符个数统计

利用hashset的去重特性存储元素,注意string转换成字符数组的方法是toCharArray()

import java.util.Scanner; 
import java.util.HashSet;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        String str = in.nextLine();
        
		HashSet<Character> set = new HashSet<>();
        for(int i  = 0;i<str.length();i++){
            set.add(str.charAt(i));
        }
        
        int n = set.size();
        System.out.println(n);

    }
}

posted on 2024-04-05 23:29  安静的聆  阅读(11)  评论(0编辑  收藏  举报