Home >>Cpp Programs >Armstrong Number in C++

Armstrong Number in C++

Armstrong Number in C++

In order to proceed to learn the program of the Armstrong number in C++ programming language, it is mandatory to understand that what the Armstrong number is.

Well, Armstrong Number is any number that is generally the resultant of the cubes of its own digits. In simple words, suppose a number is 407, if we have to prove that it is an Armstrong number then, we have to calculate the sum of the cubes of its digits like: (4)3 + (0)3 + (7)3 and the result will be = 64 + 0 + 343 = 407. The resultant is same as the number taken; hence it can be called as an Armstrong Number.

153,370,407, 1634 etc these numbers are Armstrong numbers.

Let's take another number for a better understanding of the Armstrong numbers: 370

370 = (3*3*3) + (7*7*7) + (0*0*0)    
Where:    
(3*3*3) = 27    
(7*7*7) = 343    
(0*0*0) = 0    
Hence:    
27 + 343 + 0 = 370

Program of Armstrong Number in C++

Here is the program that is used in the C++ programming language to check whether a number that has been entered by the user is an Armstrong number or not. This example will help you in understanding the topic from a deeper level for a better understanding:

#include <iostream>  
using namespace std;  
int main()  
{  
int num,rem,sum=0,temp;    
cout<<"Please Enter Your Number :  ";    
cin>>num;    
temp=num;    
while(num>0)    
{    
rem=num%10;    
sum=sum+(rem*rem*rem);    
num=num/10;    
}    
if(temp==sum)
{    
cout<<"Given number is Armstrong number."<<endl;    
}
else
{    
cout<<"Given number is Not Armstrong number."<<endl;  
} 
return 0;  
}  
Output :
Please Enter Your Number : 153
Given number is Armstrong number.
Output :
Please Enter Your Number : 154
Given number is not Armstrong number.

Cpp Programs Fibonacci Series in C++ Armstrong Number in C++ Factorial program in C++ Check Palindrome in C++ Prime Number Program In C++ Reverse Number Program in C++ Sum Of Digits Program in C++ C++ Find C++ protected keyword CPP Program for different ways to print array elements CPP Program to determine the colour of chess square CPP Program to Reverse Number CPP Program to Calculate Power of a Number CPP Program to print all Even and Odd numbers from 1 to N Program to find whether a no is power of two in CPP C++ program to find largest list of prime numbers Auto keyword in Cpp C++ program to print the left Rotation of the array Convert a given binary Tree to Doubly Linked List Delete keys in a Linked list using C++ program How do you delete a linked list in C++ Implement stack with linked list in c++ C++ Program to find first occurrence of a Number Using Recursion in an array C++ program to find Last occurrence of a Number using Recursion in an array C++ Program to find Union of two singly Linked Lists Remove Duplicates from linked list in c++ C++ Program to find Nth node in Linked List Merge sort singly linked list c++ C++ Program to Convert Roman Number to Integer Number C++ Program to find LCM of two numbers C++ Password Generator C++ Program to multiply two numbers without using multiplication operator C++ Program to print all possible subset of a set Sum of all the elements in an array divisible by a given number Print First uppercase letter in a string c++ C++ Program to Find the Number Occurring Odd Number of Times C++ Program for Print address of Variable Using Pointer C++ Program to Find ASCII Value of a Character C++ Classes and Objects Program Create a class method in C++ C++ Create Empty Class Define a class method outside the class definition in C++ How to create multiple objects of a class in C++
No Sidebar ads