Find null points of sinus function
问题 I want to implement a function in java that finds the null points of the sinus function. I know how to do that but I do not really understand the following definition of that problem: 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. Why halving the interval? Any ideas? 回答1: Sounds like you are being