The test part of the loop can use the OR operator to allow several choices.
The test part of a loop (any of the three varieties) is a boolean expression. We want a boolean expression that evaluates to true if the user enters:
and evaluates to false
for anything else.
Here is a near-complete expression:
( chars.equals( "yes" ) ______ chars.equals( "YES" ) ______ chars.equals( "y" ) ______ chars.equals( "Y" ) )