6.
Given:
> 1. public class LineUp {
> 2. public static void main(String[] args) {
> 3. double d = 12.345;
> 4. // insert code here
> 5. }
> 6. }
>
Which code fragment, inserted at line 4, produces the output | 12.345|?
> A. System.out.printf("|%7d| \n", d);
> B. System.out.printf("|%7f| \n", d);
> C. System.out.printf("|%3.7d| \n", d);
> D. System.out.printf("|%3.7f| \n", d);
> E. System.out.printf("|%7.3d| \n", d);
> F. System.out.printf("|%7.3f| \n", d);
> Answer: F
What is the interpretation of the printf statements , why is the |%7d| is giving illegalFormatConversionException ?
Thanks