I need help formatting a printf() statement. If I wanted to print out the following division to three decimal places....



int a=40500;
int b=2900;
System.out.printf( ?, a/b);


What would...