Assignemnt #7 and Letter To Yourself

Code

    /// Name: Daniel Tiffany-Appleton
    /// Period: 7
    /// Program Name: Comments and Slashes
    /// File Name: CommentsAndSlashes.java
    /// Date Finished: 9/9/15
    
    ///Name: Daniel Tiffany-Appleton
    ///Period: 7
    ///Program Name: Letter To Yourself
    ///File Name: LetterToYourself.java
    ///Date Finished: 9/9/15
    
    public class LetterToYourself
    {
       public static void main( String[] args )
       {
       
            System.out.println( "+-------------------------------------------------+" );
            System.out.println( "|                                            #####|" );
            System.out.println( "|                                            #####|" );
            System.out.println( "|                                            #####|" );
            System.out.println( "|                                                 |" );
            System.out.println( "|                                                 |" );
            System.out.println( "|                                                 |" );
            System.out.println( "|                   Bruce (not Batman)            |" );
            System.out.println( "|                   123 Not the Batcave Way       |" );
            System.out.println( "|                   Gotham City, Ny 94749         |" );
            System.out.println( "|                                                 |" );
            System.out.println( "+-------------------------------------------------+" );
        }
    }
    

Picture of the output

Assignment 7