Write Java statements to apply currency formatting to the number 100. Indicate the package you need to import.
What will be an ideal response?
```
import java.text.NumberFormat;
NumberFormat nfMoney = NumberFormat.getCurrencyInstance();
System.out.println(nfMoney.format(100));
```
Computer Science & Information Technology