import java.util.*; public class Bouncer { public static void main(String[] args) { Scanner console = new Scanner(System.in); System.out.println("Welcome to club Brettwo"); System.out.print("Please enter your age: "); int age = console.nextInt(); // if (age >= 65) { // System.out.println("Come on in!"); // System.out.println("Woohoo! Senior discount on tequila shots!"); // } else if (age >= 21) { // System.out.println("Come on in!"); // } else { // age < 21 // System.out.println("You can't sit with us."); // } if (age >= 21) { System.out.println("Come on in!"); if (age >= 65) { System.out.println("Woohoo! Senior discount on tequila shots!"); } } else { // age < 21 System.out.println("You can't sit with us."); } System.out.println("Enjoy the rest of your evening!"); } }