+ 4
Why the output changes by the use of continue in the below codes?
https://code.sololearn.com/c863EQx3esEz/?ref=app https://code.sololearn.com/cTgZiiZb2IeD/?ref=app
2 Respostas
+ 5
Continue jumps to start (next iteration) break ends the loop.
+ 2
Continue skips the current iteration and then continue with the next iteration