Java While Loop

While Loop Basics

Syntax: while (condition) { /* code */ }

Infinite Loops

Avoid conditions that are always true, e.g., while(true) without a break.

Use Cases

Use while loops when the number of iterations is not known in advance.