-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLetterToYourself.java
More file actions
18 lines (18 loc) · 1.14 KB
/
Copy pathLetterToYourself.java
File metadata and controls
18 lines (18 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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( "\\| Bill Gates \\|" );
System.out.println( "\\| 1 Microsoft Way \\|" );
System.out.println( "\\| Redmon, WA 98104 \\|" );
System.out.println( "\\| \\|" );
System.out.println( "\\+---------------------------------------------------------\\+" );
}
}