Write a program to find the number is Palindrome number in PHP A number is called Palindrome when its reverse is same as the orginal number. Eg:- Number = 12321, Reverse = 12321 Both the number and reverse is same thus its called as a palindrome number. Let’s check how to program palindrome number in […]
Armstrong Number
Write a php program to find the number is an Armstrong Number or not If the sum of the cubes of the digits of a number is equal to the number then its called an Armstrong number . Eg:- 153 (1*1*1)+(5*5*5)+(3*3*3) = 1+125+27 = 153 Program : Define a number which you want to find […]