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

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

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

Disclosure: My content contains affiliate links.

43,236 questions

56,139 answers

573 users

How to print all disarium numbers between 1 and 100 in C++

1 Answer

0 votes
#include <iostream>
#include <cmath>
 
// if (sum of number digit raised to the power of their respective position) == (number))
//     std::cout << "disarium number";
 
int sumDigits(int num) {
    int remainder = 0;
    int len = log10(num) + 1;
    float sum = 0.0f;
 
    int temp = num;
    while (temp > 0) {
        remainder = temp % 10;
        sum = sum + pow((double)remainder, (double)len);
        temp = temp / 10;
        len--;
    }
 
    return sum;
}
 
int main()
{
    for (int i = 1; i <= 100; i++) {
        if (i == sumDigits(i))
            std::cout << i << " ";
    }
 
    return 0;
}
 
 
 
/*
run:
 
1 2 3 4 5 6 7 8 9 89

*/

 



answered Jul 26, 2021 by avibootz

Related questions

1 answer 176 views
1 answer 257 views
1 answer 204 views
1 answer 160 views
1 answer 155 views
1 answer 194 views
1 answer 216 views
...