News

Write a java Program to print armstrong number. Contribute to Rakshita-Harde/-Armstrong-number. development by creating an account on GitHub.
// A number is called an Armstrong number if it is equal to the cube of its every digit. // For example, 153 is an Armstrong number because of 153= 1+ 125+27, which is equal to 1^3+5^3+3^3. // This is ...