I have problem formating this code to displey 2 decimal points
public String toString()
{
return super.toString() + "\n\tYear Level:\t" + getYearLevel() + "\n\tTuition:\t$" + "%1$.2f",calcTuition();
}
calcTuition is type double
how can I do this?
Thanks