while loop in java

In java, while loop is used to executes same set of statements until condition becomes true. Syntax of while loop: while (condition(s)) { // set of statements } Condition argument returns boolean value like...