Skip to content

Commit

Permalink
Break the line
Browse files Browse the repository at this point in the history
  • Loading branch information
debapriyo007 committed Apr 2, 2024
1 parent 5b858be commit 6ed59a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 24_MATHS/AmstrongNumber.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

/*
* An Armstrong number is a number that is equal to the sum of its own digits raised to the power of the number of digits. For example, 153 is an Armstrong number because 1^3 + 5^3 + 3^3 = 153.
* An Armstrong number is a number that is equal to the sum of its own digits raised to the power of the number of digits.
* For example, 153 is an Armstrong number because 1^3 + 5^3 + 3^3 = 153.
*/
public class AmstrongNumber {
public static void main(String[] args) {
Expand Down

0 comments on commit 6ed59a5

Please sign in to comment.