Lab 0

Lab Description:

 

The purpose of this lab is to learn basics of Java programing to display Hello World. The Program is using a class definition, the main method, and displaying the strings using System.out.println(” “).

 

Code:

 

package lab0;

public class Lab0 {

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

 

Screenshots:

lab0