PHP | Check if a number is armstrong number
Given a number, we need to check whether it is an armstrong number or not in PHP. An Armstrong number is the one whose value is equal to the sum of the cubes of its digits.
Examples:
Input : 407 Output : Yes 407 = (4*4*4) + (0*0*0) + (7*7*7) = 64 + 0 + 343 = 407 Input : 303 Output : No
Approach: For every digit r in input number x, compute r3. If sum of all such values is equal to n, then print “Yes”, else “No”.
<?php // PHP code to check wether a number is // armstrong number or not // function to check whether the number is // armstrong number or not function armstrongCheck( $number ){ $sum = 0; $x = $number ; while ( $x != 0) { $rem = $x % 10; $sum = $sum + $rem * $rem * $rem ; $x = $x / 10; } // if true then armstrong number if ( $number == $sum ) return 1; // not an armstrong number return 0; } // Driver Code $number = 407; $flag = armstrongCheck( $number ); if ( $flag == 1) echo "Yes" ; else echo "No" ?> |
Output:
Yes
Time Complexity: O(num), where num is the number of digits in the given number.
Recommended Posts:
- PHP | Check if a number is Perfect number
- PHP | check if a number is Even or Odd
- PHP | Check if a number is prime
- Check whether a given Number is Power-Isolated or not
- PHP | Sum of digits of a number
- PHP | Factorial of a number
- How to convert a string into number in PHP?
- PHP | Number of week days between two dates
- Number Guessing Game using JavaScript
- PHP | Find the number of sub-string occurrences
- HTML | DOM Input Number Object
- Program to find the number of days between two dates in PHP
- PHP program to Generate the random number in the given range (min, max)
- Display the number of links present in a document using JavaScript
- PHP | Palindrome Check
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.