If you are asking how many statements can be a in while loop, there is no maximum. However, from a practical perspective you need to limit the number of statements to a small number to keep the logic understandable.
The while statement loops until the expression is false. If the expression is false to start with, the statement never executes, not even once. The expression is evaluated the first (and subsequent)...