Simple program to print ‘Hello World’
This is the starting phase of the java program to print “Hello World”. You can change the sentence inside the double quote sign like:- “Hello World” to “Hii This is my first java program”, or anything according to your wish.
public class PrintHello
{
public static void main(String []args)
{
System.out.println(“Hello World “);//Printing Hello
}
}
Output of the above program is: Hello World