C++ Exercises: Find the Armstrong number for a given range of number
C++ Numbers: Exercise-44 with Solution
Write a C++ program to find the Armstrong number for a given range of numbers.
/*When the sum of the cube of the individual digits of a number
is equal to that number, the number is called Armstrong number. For example 153.
Sum of its divisor is 13 + 53;+ 33; = 1+125+27 = 153*/
Sample Solution:
C++ Code:
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int num, r, sum, t, mm;
int sno, eno;
cout << "\n\n Find the Armstrong number for a given range of number:\n";
cout << "-----------------------------------------------------------\n";
cout << " Input starting number of range: ";
cin >> sno;
cout << " Input ending number of range: ";
cin >> eno;
cout << " Armstrong numbers in given range are: " << endl;
for (num = sno; num <= eno; num++)
{
t = num;
sum = 0;
while (t != 0)
{
r = t % 10;
mm = pow(r, 3);
sum = sum + mm;
t = t / 10;
}
if (sum == num)
cout << num << " ";
}
cout << endl;
}
Sample Output:
Find the Armstrong number for a given range of number: ----------------------------------------------------------- Input starting number of range: 25 Input ending number of range: 200 Armstrong numbers in given range are: 153
Flowchart:

C++ Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a C++ program to check whether a given number is an Armstrong number or not.
Next: Write a program in C++ to check whether a number is a Strong Number or not.
What is the difficulty level of this exercise?
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join