+ 7
Why this loop ( i ) is running up to 10
2 odpowiedzi
+ 6
it worked !!! but why t is going upto 7 only?? and not 12 🤔
+ 4
No matters the first, the loop continue until the second condition become false.
Try:
t <= 12, i <= 5 - same as:
i <= 5 && t <= 12