/* * RedmondDemoValid.java * * Created on April 18, 2002, 2:30 PM */ /** * * @author administrator * @version */ public class RedmondDemoValid extends Object { /** Creates new RedmondDemoValid */ public RedmondDemoValid() { } /** * @param args the command line arguments */ public static void main (String args[]) { int age = RedmondIn.readValidInt("Please enter your age",110,0); System.out.println("Age is: " + age); int weight = RedmondIn.readValidInt("Please enter your weight (whole numbers only)",500,8); System.out.println("weight is " + weight); } }