Tuesday, January 29, 2008

Programs 1.1

Riverdog said;
/** Program by: Bruce Mcdowell
FileName: HelloWorld.java
Program Description: This section should contain the complete problem statement. HelloWorld is the first Java program.
Input: This section should contain a simple statement of the desired input to the program and if applicable, statements regarding input validation. No Input required.
Algorithm: This section should contain the algorithm for the problem solution in pseudocode. Output a string coded in the program.
Output: This section should contain a simple descriptive statement of the desired output of the program. The string coded in the program
Originality: I, Bruce Mcdowell, worked alone on this and it is my original work. –OR- I, FirstName LastName, received help from HelperFirstName HelperLastName, and/or used code from the following resource: http://www.yoursource.com/. */
/** Program Test Output Paste your program interaction (input & output)from rigorous testing here. This can be placed here or after the source code in the driver program.*/
public class HelloWorld{ public static void main (String[ ] args) {
System.out.println("Hello World! My name is Bruce McDowell");
}//end main method}//end class

No comments: