Random 随机数
数组
静态初始化数组
数组在计算机中的基本原理
数组的访问
什么是遍历
数组的动态初始化
动态初始化数组元素默认值规则
Java内存分配介绍
数组在计算机中的执行原理
使用数组时常见的一个问题
案例求数组元素最大值
public class Test1 {
public static void main(String[] args) {
int[] sources = {90, 50, 20, 10, 100,-5};
int max = sources[0];
for (int i = 1; i < sources.length; i++) {
if (sources[i] > max) {
max = sources[i];
}
}
System.out.println("最大值是" + max);
}
}
案例数组反转
public class Test2 {
public static void main(String[] args) {
//数组反转
int[] arr = {50, 40, 30, 20, 10};
for (int i = 0, j = arr.length - 1; i < j; i++, j--) {
int temp= arr[j];
arr[j] = arr[i];
arr[i] = temp;
}
System.out.println(arr[0]);
System.out.println(arr[1]);
System.out.println(arr[2]);
System.out.println(arr[3]);
System.out.println(arr[4]);
}
}