Computer Science, asked by babitamadhesiya38, 3 months ago

rewrite the following for loop program using the while loop.​

Attachments:

Answers

Answered by atrs7391
0

On Line 3 in your book is it for i in range(a,b+3):

if yes then here it is but if not in-form me

a=int(input("Enter the first number"))

b=int(input("Enter second number"))

c=b+4

d=1

while (d<c):

   print(a*d)

   d = d+1

print("Program Over")

Similar questions