Rewrite the following code using for loop: i=100 while(i>0): print (i) i-=3
Answers
Answered by
0
Answer:
for(i=0; i>0; i-=3)
{
print(i);
}
Similar questions