Java program to print 'Hello World'
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
}
}
Comments
Post a Comment