ads

Saturday, February 13, 2016

Java hello world program

Hello world Java program :- Java code to print hello world.

Java programming source code

class HelloWorld
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
Download Hello world program class file.
"Hello World" is passed as an argument to println method, you can print whatever you want. There is also a print method which doesn't takes the cursor to beginning of next line as println does. System is a class, out is object of PrintStream class and println is the method.
Output of program:
Java hello world code output

No comments:

Post a Comment