Sunday 31 January 2016

"Hello World"

This is the first and basic Java Program.

Output  :  "Hello World"

Program Code:

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

No comments:

Post a Comment