//Name: //Student ID: //This is the class you mostly code in. The signature of the method calculateMonthlyPayment() //is given and should not be changed. Based on the three input variables, you should calculate //the monthly savings and return it as an integer variable (in cents). //Please remember that "interestRate" is annual interest rate and in percentage (i.e. 5.3 means //5.3% annually) public class SavingsCalculator { public int calculateMonthlyPayment(int targetSavings, int numberOfMonths, double interestRate) { // this is where you should implement the binary search algorithm } }