【简答题】使用选择排序法对数组a中的数据从小到大进行排序。补充程序中的空格,使其完成相应的功能。 public class Prog5{ public static void main(String[] args){ int i,j,min,temp; int a[]={20,10,50,40,30,70,60,80,90,100}; int n; n=__________ System.out.print...
【简答题】下面程序执行后输出的结果是______________。 public class Test { public static void main( String [] args) { String text="To be or not to be,that is the question;" +"Whether tis nobler in the mind to suffer" +"the sli...