Lab # 0

Lab Description:

This is the first lab which will confirm; the fact that the lab format is understood and that the required IDE Eclipse, as well as SDK are successfully downloaded and installed. This lab will also demonstrate basic knowledge of Java format and coding utilizing Eclipse via the simple “Hello World!!!” print out.

 

Code:

public class HelloWorld {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		System.out.println("Hello World");
	}
}

Screenshot:

Lab 0

Leave a Reply

Your email address will not be published. Required fields are marked *