"step over" advances the program tor = future_value(balance, p n); cout << setw(10) << r;
r = future_value(balance, p n); cout << setw(10) << r;
"step into" advances the program tor = future_value(balance, p n); cout << setw(10) << r;
double future_value(double initial_balance,
double p, int n)
{
double b = initial_balance * pow((1 + p /100), n);
return b;
}