This is the first program in Java, In this program we will print "Hello World" message on the screen.
First program in java
| 
1 
2 
3 
4 
5 
6 
7 
8 
9 | importjava.lang.*;  //optionalclassj1{         publicstaticvoidmain(String args[])         {                 System.out.println("Hello world!");         } } | 
    Complie  : javac j1.java
    Run  : java j1
    Output
    Hello world!
    
 
No comments:
Post a Comment