Computer Science, asked by tusharmishra30112002, 10 months ago

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

Answers

Answered by rasmikrishnan123
0

Answer:

for(i=0; i>0; i-=3)

{

print(i);

}

Similar questions