Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,987 questions

51,931 answers

573 users

How to print characters that have even frequencies of occurrence in a string with Java

1 Answer

0 votes
public class MyClass {
    public static void print_even_frequencies_char(String s) { 
        int[] letters = new int[256]; 
         
        for (int i = 0; i < s.length(); i++) {
             if (Character.isLetter(s.charAt(i))) {
                 char ch = s.charAt(i); 
                 letters[(int)ch]++;
             }
        }
          
        for (int i = 0; i < 256; i++) { 
            if (letters[i] != 0 && letters[i] % 2 == 0) {
                System.out.println(Character.toString ((char) i) + " " + letters[i]);
            }
        } 
    } 
    public static void main(String args[]) {
        String s = "java programming pro oo"; 
         
        print_even_frequencies_char(s);
    }
}
 
 
/*
run:
 
g 2
m 2
o 4
p 2
 
*/

 



answered Nov 27, 2019 by avibootz
edited Nov 27, 2019 by avibootz
...