Class: PRG/420
Week: 1- HelloWorld assignment.
1
(Copy of source code) - Insert here a copy of your *.java source code text (copy and paste source code here, do not simply insert *.java files):
/*
* To change this template, choose Tools | Templates * and open the template in the editor. */ package hello.world.app;
/** * The HelloWorldApp class implements an application that * simply prints "Hello World!" to standard output. */ public class HelloWorldApp {
/** * @param args the command line arguments */ public static void main(String[] args) { System.out.println("Hello World!"); // Display the string.
}
}
(Compilation screenshot) - Insert here a screenshot of the result of compiling the above source code: NetBeans IDE 7.3.1 compiles but it did not go to the screen so I could see it, this is why I sent you a message yesterday to let you know this. But the program did run without any problems.
2
(Input screenshot) - Insert here a screenshot of your program running showing entry of the provided set of test input data for this assignment:
(output screenshot) - Insert here a screenshot of your running your program showing your last name as the first output and the expected output of this assignment:
3
(Design, approach, lessons learned) - Write a summary of the design of your program, how you coded it, and the lessons you learned from the programming assignment here: Well first of all I started by copying my hello world code into the notepad text editor. You know learning something new like Java at first is a little scary but I think going forward I will get more understanding of this application with no problems at all. So I learned to just hang in there and keep learning.
4
(zip file) - Insert here a copy of your zip file of all of your NetBeans project files so that it could be unzipped and all the NetBeans files loaded and run in another