write a program to display the multiples of 48
Answers
Answered by
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