LAB 1

Lab Description:

This is the first lab for my semester taking course 3640. The purpose of this lab , was to write a simple program , that will display , “Hello World”.

 

Code:

 

import java.util.Scanner;

public class lab1 {

	/**
	 * @param args
	 */
	public static void main(String[] args) 
	{
		System.out.println("HELLO, WORLD");
	}
}

Screenshots: