Computer Science, asked by snehakaushik1203, 7 months ago

Rewrite the following code fragment using for loop.
i=100
while i>0:
print(i)
i+=3

Answers

Answered by rzope5923
2

Answer:

for (i=100;i>0;){print (i); i=i+3;}

Similar questions