One thing we have to be very careful of is what we call an infinite loop.

If the condition we give our loop is neverfalse it will run forever!

Since x is 100 and is always increasing, it will never be less than0!

Our loop will run endlessly and our program may crash! To exit this in your IDE, usually ctrl + c will cancel the program!