摘要: package com.rj.bd.lx; import java.util.Arrays; /** * @desc 数组元素的查找之二分法 * @author yhx * @time 2019-09-11 * */ public class ErFenFa { public static void main(String[] args) { int[] a = {123,235,45,6,7,9 阅读全文
posted @ 2019-09-11 19:50 最最最可爱的核心宝儿 阅读(591) 评论(1) 推荐(0) 编辑
摘要: package com.rj.bd.new_one; import java.util.GregorianCalendar; /** * @desc 闰年的判断 * @time 2019-09-08 * @author yhx * */ public class RunNina { public static void main(String[] args) { ... 阅读全文
posted @ 2019-09-08 17:45 最最最可爱的核心宝儿 阅读(239) 评论(0) 推荐(0) 编辑
摘要: public class Test03 {public static void main(String[] args) { int lie = 1; for (int hang = 1; hang<=9;) { System.out.print(lie+"*"+hang+"="+lie*hang+" 阅读全文
posted @ 2019-09-07 20:35 最最最可爱的核心宝儿 阅读(2849) 评论(6) 推荐(1) 编辑
摘要: //冒泡排序public class BubbleSort { // public static void main(String[] args) {// // TODO 自动生成的方法存根// int[] arr = {6,3,8,2,9,1};// System.out.println("排序前 阅读全文
posted @ 2019-07-12 09:54 最最最可爱的核心宝儿 阅读(149) 评论(0) 推荐(0) 编辑