Assignemnt #7 and Letter to Yourself

Code

  /// Name: Raff Lisbona
  /// Period: 6
  /// Program Name: Letter to Yourself
  /// File Name: LetterToYourself.java
  /// Date Finished: 9/10/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( "|             Raff Lisbona             |" );
                System.out.println( "|             1739 Oro Valley Cir      |" );
                System.out.println( "|             Walnut Creek, CA 94596   |" );
                System.out.println( "|                                      |" );
                System.out.println( "+--------------------------------------+" );
        }
}
    

Picture of the output

Assignment 7