/* Listing1107.java */ import java.util.*; public class Listing1107 { public static void main(String[] args) { //Boolesche Werte System.out.format("%b %b %2$b %1$b%n", true, false); //Ganzzahlen System.out.format("[%d]%n", -2517); System.out.format("[%7d]%n", -2517); System.out.format("[%-7d]%n", -2517); System.out.format("[%(7d]%n", -2517); System.out.format("[%07d]%n", -2517); System.out.format("[%,7d]%n", -2517); System.out.format("%1$d %