Computer Science, asked by navyasangeet613, 1 year ago

Write a algorithm and flowchart to display numbers 100 to 1 i.E. In the reverse order

Answers

Answered by Ankush001
1
start
for(int I=100;I>=0;I++)
cout<<I;
end
Similar questions