Write a program to accept 10 numbers. Print the product
of numbers which are divisible by 11.
Answers
Answered by
1
Answer:
#python program ****
for i in range(10):
s = input(f" enter the {i+1} number = ")
if s % 11 == 0:
print(" divisible by 11" )
else:
print("not divisible by 11")
Similar questions
Economy,
2 months ago
English,
2 months ago
India Languages,
2 months ago
Math,
9 months ago
Math,
9 months ago