codinasion-archive / codinasion-programme

An open source codebase for sharing programming solutions.
https://codinasion.vercel.app/programme
MIT License
62 stars 147 forks source link

Armstrong number #182

Closed harshraj8843 closed 2 years ago

harshraj8843 commented 2 years ago

Title of article

Write a Java program to check Armstrong number.

Additional information

Armstrong number is a number that is equal to the sum of cubes of length of its digits.

Examples

Programme

Input:  153
Output: armstrong number
Input:  121
Output: not a armstrong number

Code of Conduct

kzhang01 commented 2 years ago

Hi! I'd like to work on this issue