Skip to content

Commit 70f1710

Browse files
authored
Add files via upload
Program to find armstrong number
1 parent 2e63603 commit 70f1710

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Armstrong_number.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#checking for armstrong number
2+
a=input('Enter a number')
3+
n=int(a)
4+
S=0
5+
while n>0:
6+
d=n%10
7+
S=S+d*d*d
8+
n=n/10
9+
if int(a)==S:
10+
print("Armstrong Number")
11+
else:
12+
print("Not an Armstrong Number")

0 commit comments

Comments
 (0)