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 C++

1 Answer

0 votes
#include <iostream>
#include <cctype>
 
using namespace std;
 
void print_even_frequencies_char(string s) { 
    int letters[256] = {0}; 
     
    for (int i = 0; i < s.length(); i++) {
         if (isalpha(s[i]))
             letters[(int)s[i]]++;
    }
     
    for (int i = 0; i < 256; i++) { 
        if (letters[i] != 0 && letters[i] % 2 == 0) {
            cout << char(i) << " " << letters[i] << endl;
        }
    } 
} 
 
int main() {
    string s = "c++ programming pro oo"; 
        
    print_even_frequencies_char(s);
}
 
 
 
/*
run:
 
g 2
m 2
o 4
p 2
 
*/

 



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