Computer Science, asked by suvashreebanerjee, 2 months ago



A list of numbers needs to be displayed which should start from 30,decrease by 3 and stop at 3.​

Answers

Answered by CdtRaghib
1

for (int i=30;i>=3;i+=3) printf("%d\n", i);

I hope this is gonna help you.


suvashreebanerjee: what is the answer
CdtRaghib: How you want the answer?
suvashreebanerjee: which class
Similar questions