Thursday, 9 February 2017

Java Programs


First java program:

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

OUTPUT:
hello ATMECE