It says that on line 33 , 35, 38 args[1] is not an int. I have to change it to string.
But id argument given as int right?
I tried it with, Integer.parseInt(args[1]), It compiles but fails the tests.
Help is very much appreciated.
Thanks.
package com.codegym.task.task17.task1710;
public enum Sex {
MALE,
FEMALE
}