Example: Testing Input data lere's a, realistic example of using the while loop to accept only he va Input data r Accepts age between 0 and 130, exclusively Priming Read age inputBox getInteger("Your Age (between 0 and 130): hile(age <0I age> 130) messageBox. show("An invalid age was entered.+ Please try again. age inputBox getInteger(" Your Age (between 0 and 130): )i C 2000 McGraw-Hill troduction to Object-Oriented Programming with Java--Wu Chapter 7-7© 2000 McGraw-Hill Introduction to Object-Oriented Programming with Java--Wu Chapter 7 - 7 age = inputBox.getInteger("Your Age (between 0 and 130):"); while (age < 0 || age > 130) { messageBox.show("An invalid age was entered. " + "Please try again."); age = inputBox.getInteger( "Your Age (between 0 and 130):" ); } Example: Testing Input Data Here’s a realistic example of using the while loop to accept only the valid input data. Accepts age between 0 and 130, exclusively. Priming Read