Lab#1 cet-3640 helloworld

LAB#1 CET_3640 Helloworld

well lab start out to be a little confusing. but in a few hour i got it down by looking up some video how to set it up. I first install the java JDK version 7 ,but i have some problem installing it but i got it in the end. eclipse was install with little problems. After i have install java and eclipse i would need to write a easy program that will show HelloWorld.

 

code:

public class helloworld {

public static void main(String[] args) {

System.out.println(“helloworld.”);

}

}