public static void main(String[]args){<br /> Integer i=new Integer(1)+new Integer(2);<br /> switch(i){<br /> case3:System.out.println("three");break;<br /> default:System.out.println("other");break;<br /> }<br /> }<br /> Whatistheresult?()
A、three
B、other
C、Anexceptionisthrownatruntime.
D、Compilationfailsbecauseofanerroronline12.
E、Compilationfailsbecauseofanerroronline13.
F、Compilationfailsbecauseofanerroronline15.