Making Decisions with If Statements

Code

    /// Name: Rachel Smith
    /// Period: 5
    /// Program Name: Making Decisions with If Statements
    /// File Name: MakingDecisionsWithIfStatements.java
    /// Date Finished: 10/2/2015
    
    import java.util.Scanner;
    
    public class MakingDecisionsWithIfStatements {
        
        public static void main( String[] args ) {
            
            Scanner keyboard = new Scanner(System.in);
            
            int age;
            
            System.out.print( "How old are you? " );
            age = keyboard.nextInt();
            
            if ( age < 13 ) {
                System.out.println( "You are too young to create a facebook account." );
            }
            
            if ( age >= 13 ) {
                System.out.println( "You are old enough to create a facebook account." );
            }
            
            if ( age < 16 ) {
                System.out.println( "You are too young to get a driver's license." );
            }
            
            if ( age >= 16 ) {
                System.out.println( "You are old enough to get a driver's license." );
            }
            
            if ( age < 18 ) {
                System.out.println( "You are too young to get a tattoo." );
            }
            
            if ( age >= 18 ) {
                System.out.println( "You are old enough to get a tattoo." );
            }
            
            if ( age < 21 ) {
                System.out.println( "You are too young to drink alcohol." );
            }
            
            if ( age >= 21 ) {
                System.out.println( "You are old enough to drink alcohol." );
            }
            
            if ( age < 35 ) {
                System.out.println( "You are too young to run for President of the United States." );
                System.out.println( "How sad! Only about the President part!!!" );
            }
            
            if ( age >= 35 ) {
                System.out.println( "You are old enough to run for President of the United States." );
                System.out.println( "How great!" );
            }
            
            if ( age >= 65 ) {
                System.out.println( "You are old enough to retire!" );
            }
        
            if ( age < 65 ) {
                System.out.println( "You are too young to retire." );
            }
        
        }
    }
    

Picture of the output

Assignment 1