Search:

Type: Posts; User: javapenguin

Search: Search took 0.65 seconds.

  1. Re: how to assign values to (args) from Jcreator

    The way it is now , your for loop will run out of bounds at the invalid index of args.length.

    Circle3 []c1 =new Circle3[(args.length)-1];

    should be

    Circle3[] c1 = new Circle3[args.length];
    ...
  2. Re: how to assign values to (args) from Jcreator

    Go to run configurations and then to arguements. That'll get it from Eclispe. not sure from JCreator.
Results 1 to 2 of 2