Computer Science, asked by ANI7506, 1 year ago

loop S= 100+90+80+70+60.....10 pls solve with FOR LOOP​

Answers

Answered by myself55
2

Answer:

int S=0;

for(int I=100;I>0;I-=10)

{S=S+I ;}

Similar questions