0
for Glitches
Whenever I add anything in a for loop, It keeps saying: "No output.", help me please. https://sololearn.com/compiler-playground/cMr9RoEQavG0/?ref=app
2 Réponses
+ 4
The middle term needs a 'while true' condition. The loop will run while this condition is true. It will stop when this is false. i == 5 is false from the start, where i=1. That's why your loop will not run
+ 3
Change i == 5 to i <= 5, then you will get an output.