Write a algorithm and flowchart to display numbers 100 to 1 i.E. In the reverse order
Answers
Answered by
1
start
for(int I=100;I>=0;I++)
cout<<I;
end
for(int I=100;I>=0;I++)
cout<<I;
end
Similar questions