- C++ Programming Examples
- C++ Programming Examples
- C++: Hello World
- C++: Get Input
- C++: Print Integer
- C++: Add two numbers
- C++: Add, Sub, Multiply, Div
- C++: Add Digits
- C++: Find Average and Percentage
- C++: Find Arithmetic Mean
- C++: Sum of n Natural Numbers
- C++: Sum of n Numbers
- C++: Square's Area and Perimeter
- C++: Rectangle's Area and Perimeter
- C++: Triangle's Area and Perimeter
- C++: Area and Circumference
- C++: Find Simple Interest
- C++: Fahrenheit to Celsius
- C++: Celsius to Fahrenheit
- C++: Print Prime Numbers
- C++: Reverse a Number
- C++: Swap Two Numbers
- C++: Print Multiplication Table
- C++: Find Factorial of a Number
- C++: Find Factors of a Number
- C++: Find HCF and LCM
- C++: Create a Calculator
- C++: Count Digits in a Number
- C++: First and Last Digit Sum
- C++: Product of Number Digits
- C++: Sum of Squares of Digits
- C++: Interchange Digits of Number
- C++ if-else Programs
- C++: Check Even or Odd
- C++: Check Prime or Not
- C++: Check Alphabet or Not
- C++: Check Vowel or Not
- C++: Check Leap Year or Not
- C++: Check Reverse equals Original
- C++: Check Perfect Number
- C++: Check Palindrome or Not
- C++: Check Armstrong or Not
- C++: Divisibility Test
- C++: Find Labor Wage
- C++: Find Discounted Price
- C++: Find Shipping Charge
- C++: Find Telephone Bills
- C++: Calculate Student Grade
- C++: Largest of Two Numbers
- C++: Largest of Three Numbers
- C++ Number Conversion
- C++: Decimal to Binary
- C++: Decimal to Octal
- C++: Decimal to Hexadecimal
- C++: Binary to Decimal
- C++: Binary to Octal
- C++: Binary to Hexadecimal
- C++: Octal to Decimal
- C++: Octal to Binary
- C++: Octal to Hexadecimal
- C++: Hexadecimal to Decimal
- C++: Hexadecimal to Binary
- C++: Hexadecimal to Octal
- C++ Pattern Programs
- C++: Pattern Programs
- C++: Print Diamond Pattern
- C++: Print Floyd's Triangle
- C++: Print Pascal's Triangle
- C++ Array Programs
- C++: 1D Array Program
- C++: Linear Search
- C++: Binary Search
- C++: Largest Element in an Array
- C++: Smallest Element in an Array
- C++: Find Second Largest Element
- C++: Find Second Smallest Element
- C++: Sum of All Elements
- C++: Multiply All Elements
- C++: Element in Even Position
- C++: Element in Odd Position
- C++: Print Even Numbers in Array
- C++: Print Odd Numbers in Array
- C++: Count Even or Odd Numbers
- C++: Sum of Even or Odd Numbers
- C++: Count Positive, Negative, Zero
- C++: Reverse an Array
- C++: Insert an Element
- C++: Delete an Element
- C++: Merge two Arrays
- C++: Bubble Sort
- C++: Selection Sort
- C++: Insertion Sort
- C++: Common Elements
- C++: 2D Array Programs
- C++: Add Two Matrices
- C++: Subtract Two Matrices
- C++: Transpose Matrix
- C++: Multiply Two Matrices
- C++: 3D Array Programs
- C++ String Programs
- C++: Print String
- C++: Find String Length
- C++: Compare Two Strings
- C++: Copy String
- C++: String Concatenation
- C++: Reverse a String
- C++: Delete Vowels from a String
- C++: Delete a Word from a String
- C++: Count Characters in a String
- C++: Count Words in a String
- C++: Frequency of Words
- C++: Remove Spaces from Strings
- C++: Sort a String
- C++: Uppercase to Lowercase
- C++: Lowercase to Uppercase
- C++: Swap Two Strings
- C++: Check the Anagram or Not
- C++: Capitalize All Words in a String
- C++: Get Numbers from a String
- C++ File Programs
- C++: Read a File
- C++: Write Content to a File
- C++: Append Data to a File
- C++: Read and Display File
- C++: Copy a File
- C++: Merge Two Files
- Count Characters in a File
- C++: Capitalize Every Word
- C++: List Files in Directory
- C++: Delete a File
- C++: Encrypt and Decrypt a File
- C++ Misc Programs
- C++: Print ASCII Value
- C++: Add Binary Numbers
- C++: Generate Random Numbers
- C++: Print a Smiling Face
- C++: Days into Years and Months
- C++: Add Two Numbers using Pointer
- C++: Print Fibonacci Series
- C++: Generate Armstrong Numbers
- C++: Find nCr and nPr
- C++: Get IP Address
- C++: Print Date and Time
- C++: Shutdown and Restart Computer
- C++ Programming Tutorial
- C++ Tutorial
C++ program to check the Armstrong number
In this article, you will learn and get code to check whether an input number is an Armstrong number or not in C++. The program is created in these ways:
But before starting these programs, let's first understand what Armstrong's number means.
What is an Armstrong number?
a number that equals the sum of its own digits, where each digit is raised to the power of the number of digits. For example, 1634 is an Armstrong number because:
1634 = 14 + 64 + 34 + 44 = 1 + 1296 + 81 + 256 = 1297 + 337 = 1634
The result is equal to the number itself. So it is an Armstrong number.
Note: Because the total number of digits in 1634 is 4, each of its digits is raised to the power of 4.
In C++, using the while loop, check the Armstrong number
This is the first part of the article. It asks the user to enter a number and checks whether it is an Armstrong number or not.
The question is: write a program in C++ that checks whether a given number, given by the user at run-time, is an Armstrong number or not. Here is its answer:
#include<iostream> using namespace std; int main() { intnum, temp, noOfDigit=0, res=0, rem, pow, i; cout<<"Enter the Number: "; cin>>num; temp = num; while(num>0) { num = num/10; noOfDigit++; } num = temp; while(num>0) { rem = num%10; pow = 1; i = 0; while(i<noOfDigit) { pow = pow*rem; i++; } res = res + pow; num = num/10; } if(res==temp) cout<<"\nIt is an Armstrong Number"; else cout<<"\nIt is not an Armstrong Number"; cout<<endl; return 0; }
This program was built and runs under the Code::Blocks IDE. Here is its sample run:
Now supply any number, say 1634, and press the ENTER key to check whether it is an Armstrong number or not, as shown in the snapshot given below:
And here is another sample run, with user input, 153:
Because 153 is a three-digit number, each digit is raised to the power of three.
The following block of code:
while(num>0)
{
num = num/10;
noOfDigit++;
}
is used to count the total number of digits available in the given number.
The following is the dry run of the above program with user input, 153:
- Initial values, noOfDigit=0, res=0
- When user enters a number, say 153. It gets stored in num. So num=153
- Using
temp=num;
, the value of num gets initialized to temp. So temp=153 - Now the condition of the while loop gets evaluated.
- That is, the condition num>0 or 153>0 evaluates to be true, therefore program flow goes inside the loop. And num/10, 153/10, or 15 gets initialized to num. So num=15
- The value of noOfDigit is incremented. So noOfDigit=1 (because its initial value is 0).
- Program flow goes back and evaluates the condition of the while loop again.
- The process continues until its condition evaluated to be false. Before its condition is evaluated to be false, the values of num and noOfDigit will be 0 and 3. So noOfDigit=3
- Now the statement
num = temp;
initializes the value of temp to num. So num=153 - The condition of the second while loop gets evaluated. That is, the condition num>0 or 153>0 evaluates to be true, therefore program flow goes inside the loop.
- There, num%10, 153%10, or 3 gets initialized to rem. So rem=3
- and pow=1, i=0.
- Now the condition of the third while loop gets evaluated. That is, the condition i<noOfDigit or 0<3 evaluates to be true, therefore program flow goes inside the loop.
- And the pow*rem, 1*3, or 3 is initialized to pow.
- The value of i gets incremented. So i=1
- The program flow goes back and evaluates the condition, i<noOfDigit, again.
- The process continues until its condition is evaluated as false.
- Before its condition evaluated to be false, the value of pow will be 27. That is the result of 33
- So the statement,
res = res + pow;
, initializes the value of res + pow (or 0+27 or 27) to res. So res=27 - Finally, num/10 or 153/10 or 15 gets initialized to num. So num=15
- The program flow again goes back and evaluates the condition num>0 (of the while loop) again.
- The process continues until its condition is evaluated as false.
- After its condition evaluated to be false, the value of res will be 153.
- And after exiting from the loop, compare res with the original value entered by the user.
- If both are equal, then it is an Armstrong number; otherwise, it is not an Armstrong number.
In C++, using the for loop, check the Armstrong number
Now let's create the same program as the previous one, using the for loop. That is, this program does the same job as the previous program. The only difference is that, in place of a "while" loop, we've used a "for" loop here:
#include<iostream> using namespace std; int main() { intnum, temp, noOfDigit=0, res=0, rem, pow, i; cout<<"Enter the Number: "; cin>>num; for(temp=num; temp>0; temp=temp/10) noOfDigit++; for(temp=num; temp>0; temp=temp/10) { rem = temp%10; pow = 1; for(i=0; i<noOfDigit; i++) pow = pow*rem; res = res + pow; } if(res==num) cout<<"\nIt is an Armstrong Number"; else cout<<"\nIt is not an Armstrong Number"; cout<<endl; return 0; }
This program produces exactly the same output as the previous program. Here is its sample run with user input, 371:
And here is the last sample run, with user input: 567.
The same program in different languages
« Previous Program Next Program »