The illustration shows a code segment with the lines numbered from 39 through 49 and the annotations are as follows:

"set(newDollars, newCents, getRate());
}
 void SavingsAccount::withdraw(int dollars, int cents)
{
double balance = getBalance();
balance -= dollars;
balance -= (static_cast<double>(cents) / 100);
int newDollars = static_cast<int>(balance);
int newCents = static_cast<int>((balance - newDollars) * 100);
set(newDollars, newCents, getRate());
}" annotated as "The withdraw function subtracts the amount from the balance and changes the member variables via the set function."