设有如下程序:public class Test5 { public static void main (String args []) { /* This is the start of a comment if (true) { Test5 = new test5(); System.out.println(“Done the test”); } /* This is another comment */ System.out.println (“The end”); }}结果为? A.程序输出”Done the test”和 “The end” B.输出 “Done the test”. C. 程序输出”The end” D.程序编译错误.
正确答案:C