Write python program to display first four multiple of a number using recursion.
Answers
Answered by
0
Explanation:
def mul_table(n, i=1):
print (n*i)
if i != 10:.
mul_table(n,i+1)
mul_table(5)
OUTPUT:
5
10
15
20
25
30
35
40
45
50
Answered by
1
Answer:
correct answer and also not copied from Google I have also given answer this to my friend as she also ask this same questions for me and I was just message her this answer so this is not copied from Google please mark as brainliest answer as this answer is really correct
Explanation:
I have given answer in two parts first part we have to write first and second in the second
Attachments:
Similar questions