上一页 1 2 3 4 5 6 7 8 9 10 ··· 29 下一页
摘要: 阅读全文
posted @ 2024-02-28 22:07 小彭先森 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1.数组找最值 package com.itheima.arry; public class ArrayDemo7 { public static void main(String[] args) { //掌握数组元素求最值 int[] faceScore={15,9000,10000,20000, 阅读全文
posted @ 2024-02-28 21:38 小彭先森 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 程序都是在计算机中的内存中执行的,java程序编译之后会产生一个class文件,这个class文件是提取到内存中的JVM虚拟机中执行的。 java为了便于虚拟机这个java程序,也即这个class文件。将虚拟机这块内存区域进行了划分:方法区,栈,堆, 本地方法栈,程序计数器 方法区:放编译后的cla 阅读全文
posted @ 2024-02-28 21:14 小彭先森 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 数组的动态初始化定义数组先不存入具体元素值,只确定数组存储的数据类型和数组的长度 package com.itheima.arry; public class ArrayDemo4 { public static void main(String[] args) { //定义数组的方式2 int[] 阅读全文
posted @ 2024-02-28 20:30 小彭先森 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 遍历:一个一个访问 package com.itheima.arry; public class ArryDemo2 { public static void main(String[] args) { //掌握数组遍历 int[] ages=new int[]{12,24,36}; // Syst 阅读全文
posted @ 2024-02-28 20:17 小彭先森 阅读(14) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.arry; public class ArryDemo1 { public static void main(String[] args) { //掌握数组访问 int[] ages=new int[]{12,52,630}; //修改数组中数据 ages[0 阅读全文
posted @ 2024-02-28 20:04 小彭先森 阅读(8) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.arry;public class ArryDemo { //静态初始化数组 //数据类型【】 数组名=new 数据类型【】{} int[] ages=new int[]{12,24,36}; double[] scores=new double[]{89.9 阅读全文
posted @ 2024-02-28 19:26 小彭先森 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 原始题目要求: 一、 数据结构分析: (1)京津冀三省的2015年度的科技成果数据原始表,为Access数据库,; (2)要求将三省的科技成果数据汇总到同一表中(要求结果表为MySql数据表); (3)三个原始数据表结构不一致,要求结果表中包括所有的字段,表达意思相同或相似的字段要进行合并,不允许丢 阅读全文
posted @ 2024-02-28 17:10 小彭先森 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 2 阅读全文
posted @ 2024-02-20 21:47 小彭先森 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 。。。。 阅读全文
posted @ 2024-02-18 09:16 小彭先森 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 29 下一页