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            
       }
}



Output of the above program is: Hello World

Comments

Popular posts from this blog

Java Program to make a comparison between numbers

Java program using Scanner Class