What's wrong? while( (i < 10) && (i > 24))
the logical operator && cannot be used in a test condition
the while loop is an exit-condition loop
the test condition is always false
the test condition is always true