import java.util.Formatter;
public class Formating {
static Formatter formatter = new Formatter();
public static void main(String[] args) {
System.out.print(
formatter.format("%b %b %b",
new Boolean(null),
new Boolean("bool"),
8
)
);
}
}
Login in to like
Login in to comment