// purpose: display a compliment on user's age import java.util.*; public class AgeComplimenter { // method main(): program starting point public static void main( String[] args ) { // set up input scanner Scanner input = new Scanner( System.in ); // get the age System.out.print( "Enter your age: " ); int age = input.nextInt(); System.out.println(); // compute compliment age int fauxAge = age - 5; // display compliment System.out.println( age + "! You don't look even " + fauxAge + "!" ); } }