P3: command line arguments

class commlinearguments{

    public static void main(String args[])
    {
        System.out.println("You entered: "+args[0]);   
    }
}

Comments