Computer Science, asked by annahajaveedmir31, 4 months ago

Write a program to accept 10 numbers. Print the product
of numbers which are divisible by 11.

Answers

Answered by atulkumargpt
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