8.25.9.Control the number of characters that will appear to the right of the decimal point: %w.df
import java.util.Formatter;
public class MainClass{ public static void main(String[] argv){
StringBuilder sb = new StringBuilder();
Formatter f = new Formatter(sb); int a = 1234; int b = 5;
f.format("PI is %25.18f!", Math.PI);
System.out.println(sb);