theepag / Hacktoberfest-2021

Hacktoberfest repository
1 stars 20 forks source link

please add this new code to your math folder. #5

Closed sgc-2924 closed 2 years ago

sgc-2924 commented 2 years ago

it is code for checking Armstrong number of n digits.

`# A positive integer is called an Armstrong number of order n if

abcd... = an + bn + cn + dn + ...=

num = int(input("input the number that you want to check for armstrong number = "))

Changed num variable to string,

and calculated the length (number of digits)

order = len(str(num))

initialize sum

sum = 0

find the sum of the cube of each digit

temp = num while temp > 0: digit = temp % 10 sum += digit ** order temp //= 10

display the result

if num == sum: print(num,"is an Armstrong number") else: print(num,"is not an Armstrong number") `

sgc-2924 commented 2 years ago

please review my contribution ASAP. so i will get confirmed PR in hacktoberfest 2021. 🙏🙏🙏

theepag commented 2 years ago

It's already merged!