0
Can someone rewrite this code so that it outputs in this order? c1, t1, l1, c2, t2, l2....
2 ответов
+ 4
Just reverse the loops
https://code.sololearn.com/chL9dbMC3W5M/?ref=app
+ 2
Just by flipping the loops around (having i loop through "123456789" as the outer loop and h loop through s as the inner) will have your output work as you need 👍