the gcf method returns the greatest common factor of parameters a and b, as determined by case i and case ii. write the gcf method below. you are encouraged to implement this method recursively. /** precondition: a and b are positive integers. * returns the greatest common factor of a and b, as described in part (a). */ public static int gcf(int a, int b)