Assignemnt #7, Letter to Yourself

Code

/// Name: Alex Pinder
/// Period: 5
/// Program Name: Letter to Yourself
/// File Name: LetterToYourself.java
/// Date Finished: 9/9/2015

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( "|                              Bill Gates                 |" );
        System.out.println( "|                              1 Microsoft Way            |" );
        System.out.println( "|                              Redmond, WA 98104          |" );
        System.out.println( "|                                                         |" );
        System.out.println( "+---------------------------------------------------------+" );
    }
}
    

Picture of the output

Assignment 7