BASIC PROGRAM TO PRINT HELLO WORLD

 import java.io.*;

import java.util.*;

class output

{

    public static void main(String args[])

    {

        System.out.println("HELLO WORLD");

    }

}

Comments

Popular posts from this blog

Binary Left Shift Operator