Find zero points with recursion
问题 I want to find the zero points of a sine function. The parameter is a interval [a,b]. I have to it similar to binary search. Implement a function that searches for null points in the sinus function in a interval between a and b. The search-interval[lower limit, upper limit] should be halved until lower limit and upper limit are less then 0.0001 away from each other. Here is my code: public class Aufg3 { public static void main(String[] args) { System.out.println(zeropoint(5,8)); } private