Page 1 of 1

About Question enthuware.ocpjp.v8.2.1384 :

Posted: Wed Nov 09, 2016 11:20 am
by curiox
The code of the following line:

Code: Select all

a.assert(Integer.parseInt(args[0]); //4
Is lacking a parenthesis, it should be like this:

Code: Select all

a.assert(Integer.parseInt(args[0])); //4
See that the parenthesis in the first only close the parseInt method.

Re: About Question enthuware.ocpjp.v8.2.1384 :

Posted: Wed Nov 09, 2016 10:25 pm
by admin
You are right. Fixed.
thank you for your feedback!