Simple JAVA Programs for Begineers:


1.Hello world:---print the text the Hello world,the first program to try.....

public class hello {
    public static void main(String[] args){
        System.out.print("hello world");
    }

}


Comments

Popular Posts