Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
add PE#3
Browse files Browse the repository at this point in the history
  • Loading branch information
xenoterracide committed Oct 22, 2008
1 parent 686a779 commit 790bd5b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions java/assign1/pe3.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/**************************************************************
* *** Date: 10/22/2008
* *** Name: Caleb Cushing
* *** Purpose: print preformated output
* **************************************************************/

/****************************************************************
* *** 1: Write a program that prints the following banner
* *** ***************************
* *** ***************************
* *** ********* WELCOME *********
* *** ===========================
* *** ===========================
* *** ********* HOME *********
* *** ***************************
* **************************************************************/

class pe3
{
public static void main(String[] args)
{
System.out.println("" +
"***************************\n" +
"***************************\n" +
"********* WELCOME *********\n" +
"===========================\n" +
"===========================\n" +
"********* HOME *********\n" +
"***************************\n" +
"***************************\n");
}
}

0 comments on commit 790bd5b

Please sign in to comment.