Tuesday, 18 July 2017

1. Simple java program to print "Hello World"

public class Hello  
 {  
   public static void main(String args[])  
      {  
     System.out.println("Hello world\n");  
     }  
 } 

Output:
.

No comments:

Post a Comment