Computer Science, asked by AvaDaCoolest, 2 months ago

write a c0de to print this using while looop

0
10
200
3000
40000
500000

I'm n00b help me

Answers

Answered by ORMmaster
1

Answer:

I use python, but the concept will be the same.

Explanation:

p=1

i=0

while i <=5:

c=i*p

print (c)

i+=1

p=p*10

Similar questions