Computer Science, asked by paulanurag751, 2 months ago


Rewrite the following code using for loop:
j=100
while j>0:
print (j)
j-=3
else:
print ("Bye Bye")​

Answers

Answered by jai696
2

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

for j in range(100, 0, -3):

print(j)

print("Bye Bye")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions