demo of the break sttm in a while loop

End of while loop: counter=1
End of while loop: counter=2
Counter: 3 break
After the break loop

demo of the continue sttm in a while loop

End of while loop: counter=1
End of while loop: counter=2
Counter: 3 continue
End of while loop: counter=4
End of while loop: counter=5
After the continue loop

demo of using the break sttm to prevent an infinite loop

End of while loop: counter=1
End of while loop: counter=2
End of while loop: counter=3
End of while loop: counter=4
End of while loop: counter=5
End of while loop: counter=6
End of while loop: counter=7
End of while loop: counter=8
End of while loop: counter=9
End of while loop: counter=10
End of while loop: counter=11
End of while loop: counter=12
End of while loop: counter=13
End of while loop: counter=14
End of while loop: counter=15
End of while loop: counter=16
End of while loop: counter=17
End of while loop: counter=18
End of while loop: counter=19
End of while loop: counter=20
End of while loop: counter=21
End of while loop: counter=22
End of while loop: counter=23
End of while loop: counter=24
End of while loop: counter=25
End of while loop: counter=26
End of while loop: counter=27
End of while loop: counter=28
End of while loop: counter=29
End of while loop: counter=30
End of while loop: counter=31
End of while loop: counter=32
End of while loop: counter=33
End of while loop: counter=34
End of while loop: counter=35
End of while loop: counter=36
End of while loop: counter=37
End of while loop: counter=38
End of while loop: counter=39
End of while loop: counter=40
End of while loop: counter=41
End of while loop: counter=42
End of while loop: counter=43
End of while loop: counter=44
End of while loop: counter=45
End of while loop: counter=46
End of while loop: counter=47
End of while loop: counter=48
End of while loop: counter=49
End of while loop: counter=50
End of while loop: counter=51
End of while loop: counter=52
End of while loop: counter=53
End of while loop: counter=54
End of while loop: counter=55
End of while loop: counter=56
End of while loop: counter=57
End of while loop: counter=58
End of while loop: counter=59
End of while loop: counter=60
End of while loop: counter=61
End of while loop: counter=62
End of while loop: counter=63
End of while loop: counter=64
End of while loop: counter=65
End of while loop: counter=66
End of while loop: counter=67
End of while loop: counter=68
End of while loop: counter=69
End of while loop: counter=70
End of while loop: counter=71
End of while loop: counter=72
End of while loop: counter=73
End of while loop: counter=74
End of while loop: counter=75
End of while loop: counter=76
End of while loop: counter=77
End of while loop: counter=78
End of while loop: counter=79
End of while loop: counter=80
End of while loop: counter=81
End of while loop: counter=82
End of while loop: counter=83
End of while loop: counter=84
End of while loop: counter=85
End of while loop: counter=86
End of while loop: counter=87
End of while loop: counter=88
End of while loop: counter=89
End of while loop: counter=90
End of while loop: counter=91
End of while loop: counter=92
End of while loop: counter=93
End of while loop: counter=94
End of while loop: counter=95
End of while loop: counter=96
End of while loop: counter=97
End of while loop: counter=98
End of while loop: counter=99
Counter: 100 break
After the break loop