Saturday, 12 August 2017

First program in java

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
import java.lang.*;  //optional
 
class j1
{
        public static void main(String args[])
        {
                System.out.println("Hello world!");
        }
}


    Complie  : javac j1.java
    Run  : java j1
    Output
    Hello world!
    

No comments:

Post a Comment