Skip to content

Instantly share code, notes, and snippets.

@leihuagh
Created March 24, 2017 15:59
Show Gist options
  • Save leihuagh/226e1cd07e25d971601c89183d4a283a to your computer and use it in GitHub Desktop.
Save leihuagh/226e1cd07e25d971601c89183d4a283a to your computer and use it in GitHub Desktop.
Java Project: Envelope (2) Design an envelope
package envelope;
public class EnvelopeDesign {
public static void main(String[] args) {
System.out.println("+------------------------------------------------+");
System.out.println("|Lei Hua |");
System.out.println("|419 Common Street |");
System.out.println("|Lexington, MA 02420 |");
System.out.println("| |");
System.out.println("| |");
System.out.println("| Jack Ngo |");
System.out.println("| 419 Common Street |");
System.out.println("| Lexington, MA 02420 |");
System.out.println("| |");
System.out.println("| |");
System.out.println("+------------------------------------------------+");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment