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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,777 answers

573 users

How to find all the armstrong numbers in the range of 0 and 999 in C++

1 Answer

0 votes
#include <iostream>

using namespace std;

// An Armstrong number of three digits is an integer that the sum 
// of the cubes of its digits is equal to the number itself

// 371 is an Armstrong number: 3**3 + 7**3 + 1**3 = 371

int main()
{
	int reminder, sum, tmp;

	for (int n = 0; n <= 999; n++)
	{
		tmp = n;
		sum = 0;

		while (tmp != 0)
		{
			reminder = tmp % 10;
			tmp = tmp / 10;
			sum = sum + (reminder * reminder * reminder);
		}
		if (sum == n)
			cout << n << endl;
	}

	return 0;
}

/*
run:

0
1
153
370
371
407

*/

 





answered May 8, 2017 by avibootz
edited May 8, 2017 by avibootz
...