//point X <br /> public class foo ( <br /> public static void main (String[]args) throws Exception { <br /> printWriter out = new PrintWriter (new <br /> java.io.outputStreamWriter (System.out), true; <br /> out.printIn(“Hello”); <br /> } <br /> )  <br /> Which statement at PointX on line 1 allows this code to compile and run?()  
A、 Import java.io.PrintWriter;
B、 Include java.io.PrintWriter;
C、 Import java.io.OutputStreamWriter;
D、 Include java.io.OutputStreamWriter;
E、 No statement is needed.