Monday, January 16, 2017

Think Java - Chapter 1: My Finished Code for Exercises

Note: Use the shortcut to format your code CTRL+Shift+F.
Below is the code used for Chapter 1 exercises.
****************

public class HelloWorld {

public static void main(String[] args) {
System.out.println("Hello World!");

/*
*
* Test comment
*/
System.out.println("How are you?");

}
}

No comments:

Post a Comment