Assignemnt #7 and A Letter To Yourself

Code

    
    ///Name: Daniel Rhees
    ///Period: 5
    ///Project Name: A Letter To Yourself
    ///File Name: ALetterToYourself.java
    ///Date: 9/14/2015
    
    public class ALetterToYourself
    {
        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