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,845 questions

51,766 answers

573 users

How to check if a number is lead number (sum of even digits is equal to the sum of odd digits) in C++

1 Answer

0 votes
#include <iostream>

bool isLeadNumber(int num) {
    int evenSum = 0, oddSum = 0;

    while (num > 0) {
        int digit = num % 10; // Extract the last digit
        if (digit % 2 == 0) {
            evenSum += digit; // Add to even sum if digit is even
        } else {
            oddSum += digit;  // Add to odd sum if digit is odd
        }
        num /= 10; // Remove the last digit
    }

    return evenSum == oddSum; // Check if sums are equal
}

int main() {
    int number = 615341;

    if (isLeadNumber(number)) {
        std::cout << number << " is a lead number." << std::endl;
    } else {
        std::cout << number << " is not a lead number." << std::endl;
    }
}


/*
run:

615341 is a lead number.

*/

 



answered Sep 16, 2025 by avibootz
...