Nikhil-2002 / Programming_Hactoberfest23

10 stars 74 forks source link

Check if a number is an Armstrong Number #56

Closed naikmubashir closed 10 months ago

naikmubashir commented 11 months ago

A number is an Armstrong number if the sum of its own digits raised to the power number of digits gives the number itself. For example,371 is a three digit Armstrong number => 371 = 3^3 + 7^3 + 1^3 For example, 1634 is a four digit Armstrong number => 1634 = 1^4 + 6^4 + 3^4 + 4^4

naikmubashir commented 11 months ago

I would like to take this issue and solve it.

Gaurav-152 commented 11 months ago

solve kru?

sowmyasri-Z commented 11 months ago

could you please assign me this issue.