This is the first program which is always taught to every Programmer,so here we are also continuing the same tradition,here is the source code of displaying "Hello World" in Java.
Java Hello World Program:
class HelloWorld
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
Output of the program:
You can add anything in the doubles quotes of the println statement to display text of your own choice.
Java Hello World Program:
class HelloWorld
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
Output of the program:
You can add anything in the doubles quotes of the println statement to display text of your own choice.
0 comments: