Look up DecimalFormat object. It should look like this (don't forget to import decimal format class at top):
Code
DecimalFormat df = new DecimalFormat("0.00");
double myNum = 5.5555555555;
System.out.println(df.format(myNum));
This will print out 5.55 but you can change it to 0.000 passing in to decimalformat to change how many decimal places you want.
You then have to override the toString method and print out just your number. Do not forget to use @Override annotation as it helps the compiler.
Code
@Override
public String toString(){
return "\nAccount ID: "+acct_id+"\nBalance:$ "+balance+"\nAccount Owner "+ df.format(myNum);
}
Assuming Owner is the one you want to format. I changed owner.toString to the decimal formatting of myNum which i used in the example above.