The Wulf
- Home
- StormHaven
- Journal
- Writings NEW
- About Me
- Java Scripts
- Video Game Class
- English Essay
- English Essay 2
Site
- DrabblesNEW
- SCA Novice Pic
- Links
- Quotes - broke
- Myrddin Keep
- Whois Script
- Hello World
- Kethryn
- Disclaimer
Poems
- America NEW
- Once More
- Moments
- Ask Me
- Death's Lover
- Leaving
- One Phone Call
- Dying
- If Only Published
- Where I Stand
- Tired
- Honesty
- Hate
- To Know Me
- Understand
- You Called
- I Couldn't
- Last Call
- Nature's Course
- Forever
- The Shadow Within
- Puddle of Dejection
- Duality of Love
Contact
- Email - broke
- Message Board - broke
- Joke of the Day
- A Day in Hell
- Guestbook - broke



Demonstrating how to print in Java.

printFun
Tuesday, April 15, 2003, 2002
By Wulf

/* Programmer          : Amanda                   */

/* User ID             : abc                         */
/* Section             : 6                                */
/* Assignment          : Program 1                        */
/* Due Date            : 02/13/13                         */
/* Purpose             : Demonstrate understanding of printing in Java
as well as creating, compiling, running and submitting a program. */


/* Input, Output definitions */

public class printFun

{

	public static void main(String args[])

		{

		    /* Printing out personal information */
		    System.out.println("\n" + "Programmner           : Amanda");
		    System.out.println("User ID               : abc ");
		    System.out.println("Section               : 6 ");
		    System.out.println("Program               : 1 ");
		    System.out.println("Purpose               : Printing and practice");

		    System.out.println("\n" + "***********************");
        	    System.out.println("* Just do it. *");
      		    System.out.println("* Be all you can be. *");
	            System.out.println("* I can't believe it's not butter. *");
	            System.out.println("* Darwinism lives. *");
               	    System.out.println("* Convert the dominent paradigm. *");
		    System.out.println("***********************");

		}

}
Output
Programmner           : Amanda
User ID               : abc
Section               : 6
Program               : 1
Purpose               : Printing and practice using Java


***********************
* Just do it. *
* Be all you can be. *
* I can't believe it's not butter. *
* Darwinism lives. *
* Convert the dominent paradigm. *
***********************