Exception, Unicode and Double checking and printing Exercise

Reminders:

DecimalFormatter object knows: How to print decimals
Package to import: import java.text.DecimalFormat;
How to create a DecimalFormatter for your numbers:
DecimalFormat percentage2 = new DecimalFormat(“0.00%”);

How to use a DecimalFormatter to print to your screen:
System.out.println(percentage2.format(.308)); // will print 30.80%
Different format options:
0 = required position
# = show it if you have it
% = make it a % (mult by 100)
E = E notation (scientific)

Try/Catch: