阅读下面程序 public class Test3 { public static void main(String args[]){ int x=3, y=4, z=
11 查阅
阅读下面程序 public class Test3 { public static void main(String args[]){ int x=3, y=4, z=5; String s="xyz"; System.out.primln(s+x+y+z); } } 程序运行的结果是
A.xyzl2
B.xyz345
C.xyzxyz
D.12xyz
参考答案: