【简答题】写出下面程序的运行结果 public class TestArray { public static void main(String args[ ]){ int i , j ; int a[ ] = { 5,9,6,8,7}; for ( i = 0 ; i < a.length-1; i ++ ) { int k=i; for ( j=i ; j < a.length ; ...
【简答题】阅读下面程序 public class Test2 { public static void main(String args[]) { int x=3,y=4,z=5; String s="xyz"; System.out.println(x+y+s+z); } } 请写出程序的运行结果 。