上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 39 下一页
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> 阅读全文
posted @ 2020-09-20 22:15 武卡卡 阅读(347) 评论(0) 推荐(0) 编辑
摘要: package array; import java.util.Arrays; /** * 降序 */ public class Reverse { public static void main(String[] args) { // TODO Auto-generated method stub 阅读全文
posted @ 2020-09-17 17:26 武卡卡 阅读(820) 评论(0) 推荐(0) 编辑
摘要: 通过Array类的静态 sort() 方法可实现对数组排序,sort() 方法提供了许多种重载形式,可对任意类型数组进行升序排序。 然而,Array类中没有类似 js 的 reverse 反序输出方法 。 只得先sort升序 , 再反序输出 , 上代码 : import java.util.Arra 阅读全文
posted @ 2020-09-16 16:48 武卡卡 阅读(1218) 评论(0) 推荐(0) 编辑
摘要: public class Bubble3 { public static void main(String[] args) { int[] arr; arr = new int[]{2,3,6,1}; Bubble3 Bu3 = new Bubble3(); Bu3.jiaohuan(arr); } 阅读全文
posted @ 2020-09-16 09:27 武卡卡 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 主要是利用静态变量存储 public class Bubble2 { static int minNumber; public static void main(String[] args) { int[] arr; arr = new int[]{20,3,2,5,666,33,1999,22}; 阅读全文
posted @ 2020-09-15 00:03 武卡卡 阅读(805) 评论(0) 推荐(0) 编辑
摘要: // 递归求数组最小值 public class Bubble { // 定义存储最小值的变量 static int min; public static void main(String[] args) { int[] arr; arr = new int[]{10,200,66,1,0}; mi 阅读全文
posted @ 2020-09-14 23:23 武卡卡 阅读(734) 评论(0) 推荐(0) 编辑
摘要: 1. 思路:发现菱形的规律 ,定义三个变量,左边距和右边距,中间的边距 。 具体规律观察上图 。 2.上代码: //输出空心菱形 public class ForToLingXing { public static void main(String[] args) { byte lingWidth 阅读全文
posted @ 2020-09-12 12:27 武卡卡 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 上效果图: 上代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <titl 阅读全文
posted @ 2020-09-04 19:09 武卡卡 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 使用js处理问题的时候,我们可能会经常使用到setInterval()来进行定时任务或者轮询的操作,那么如何让setInterval停止和重新启动呢,下边的代码就可以实现的呦,如果有更好的方法,不吝赐教。 // 定义定时任务 function func(){console.log("hello")} 阅读全文
posted @ 2020-09-04 17:08 武卡卡 阅读(5379) 评论(0) 推荐(1) 编辑
摘要: 原因 : 元素 display : flex ; 解决方法 : display : block; 阅读全文
posted @ 2020-09-04 15:56 武卡卡 阅读(4678) 评论(0) 推荐(2) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 39 下一页