/* Program to give the type of fare needed. * * Author: Carsten Butz * Date September 2002 */ import tio.*; class Age{ public static void main (String[] args){ /* Algorithm: * * input age * if 18 <= to age < 65 type out full fare * otherwise type out reduced fare * */ int age; // improved style final int UPPERAGELIMIT = 65; final int LOWERAGELIMIT = 18; System.out.println("Please enter your age: "); age = Console.in.readInt(); if(LOWERAGELIMIT<= age && age < UPPERAGELIMIT) System.out.println("Full fare!"); else System.out.println("Reduced fare!"); } }