下列程序的输出结果是( )。interface Inter{public final static int A=100;}class My implements Inter{public static void main (String args[ ]){System.out.println(A) ;}
A. X=3 Y=5 X=3 Y=5 H=4 W=6
B. X=3 Y=5 X=3 Y=5 H=3 W=6
C. X=3 Y=5 X=3 Y=4 H=4 W=6
D. X=3 Y=5 X=3 Y=3 H=4 W=6