Assignment #7 and Letter To Yourself

Code

    ///Name: Trent Lane
    ///Period: 6
    ///Program Name: Letter to Yourself
    ///Date Finished: 9/5/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( "!   Trent Lane              !" );
        System.out.println( "!   1 Microsoft Way         !" );
        System.out.println( "!   Walnut Creek, CA 94596  !" );
        System.out.println( "+---------------------------+" );
    }
}
 

Picture of the output

Assignment 7