Computer Science, asked by alpha01234, 3 months ago

write a program to display the multiples of 48​

Answers

Answered by anindyaadhikari13
1

Question:-

➡ Write a program to display the multiples of 48.

Program:-

This is written in Python.

for x in range(1,11):

y=48*x

print("48 * ",x, " = ", y)

Have a great day ahead..

Similar questions