Draw a flow chart to print the multiplication tables of a number upto 10 level (if the number
is 4 then print 4 1=4, 4*2 = 8 and so on upto 4 * 10 = 40. The number 4 in this
example is given by the user)
Answers
Answered by
0
Answer:
x = 4
for y in range (1,11,1):
print (" 4 * ", y , "=", 4*y)
Similar questions