2017年1月17日

摘要: import java.util.*; class Demo14{ public static void main(String[] args) { int[] arr = {12, 45, 23, 96, 78}; Arrays.parallelSort(arr);//排序 String info 阅读全文
posted @ 2017-01-17 19:21 绯羽 阅读(129) 评论(0) 推荐(0) 编辑
 
摘要: class Demo13{ public static void main(String[] args) { char[] arr = {'a', 'b', 'c', 'd', 'e'}; chang(arr); } public static void chang(char[] arr) { ch 阅读全文
posted @ 2017-01-17 14:45 绯羽 阅读(132) 评论(0) 推荐(0) 编辑
 
摘要: import java.util.*;class Demo12{ public static void main(String[] args) { int[] arr = {6, 10, 12, 23, 45, 56, 78, 89}; int num; int sum; System.out.pr 阅读全文
posted @ 2017-01-17 13:34 绯羽 阅读(110) 评论(0) 推荐(0) 编辑