0
descending rather than ascending multiple
How can i make like this code but descending rather than ascending https://code.sololearn.com/cr5RKeIe32FJ/?ref=app
3 Respostas
0
A͢J - S͟o͟l͟o͟H͟e͟l͟p͟e͟r͟ can you help
0
STOP
Just use loop in reverse order like this:
for (int j=10; j > 0; j--)
0
A͢J - S͟o͟l͟o͟H͟e͟l͟p͟e͟r͟ thank you