Answer:
D A B C
I”m a bit confused about the iteration expression for C. What does “-=” mean? Is it the same as C = -15?
c -= 15;
is equivalent toc = c – 15;
what does i*20 mean?
i multiplied by 20
yes but in real its more like C = C – 15.