2018年2月1日
摘要: 1 package day02; 2 3 public class SelectSort { 4 public static void selectSort(int[] arr){ 5 for(int x=0;x<arr.length-1;x++){ 6 for(int y=x+1;y<arr.le 阅读全文
posted @ 2018-02-01 17:24 夏雨等秦天 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1 package day02; 2 3 public class FunctionOverload { 4 public static void main(String[] args){ 5 int a = add(3,4); 6 int b = add(3,4,5); 7 //System.ou 阅读全文
posted @ 2018-02-01 12:06 夏雨等秦天 阅读(180) 评论(0) 推荐(0) 编辑