Checkpoint 11.3.1.
- {:^10}
- Center within 10 characters of space
- {:0^10}
- Center within 10 characters of space, use
0
as the fill - {:>10}
- Right align within 10 characters of space
- {:>10.0f}
- Right align within 10 characters of space, print as a fixed decimal with 0 decimal places
Match each format code with its description.
Try again!