Determine whether the given input n-digit number is Armstrong Number or not.
Return True if it is an Armstrong Number. An n-Digit Armstrong number is an integer such that the sum of the power n of its digit is equal to the number itself.
For Example:
371 = 3^3 + 7^3 + 1^3 or
1741725 = 1^7 + 7^7 + 4^7 + 1^7 + 7^7 + 2^7 + 5^7
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers356
Suggested Problems
-
Remove any row in which a NaN appears
8771 Solvers
-
How to find the position of an element in a vector without using the find function
2814 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
399 Solvers
-
Convert a Cell Array into an Array
2197 Solvers
-
9334 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Same as problems 1008 and 2061.
So Armstrong must be a narcissist :).