POLAYOR

10 2022 档案

学校Java Week6
摘要:Week6 W6L1 Array // create an Array int [] myArray; myArray = neew int[5]; // 2D Array int[][] a = new int[3][5]; // 3 rows, 5 columns Arrays + For Lo 阅读全文

posted @ 2022-10-21 14:42 POLAYOR 阅读(28) 评论(0) 推荐(0)

学校Java Week5
摘要:Week5 W5L1 Review Control Flow Condition Loops counter Loops For loops Does the exact same thing with less code for (int i = 0; i < 10; i++) // initia 阅读全文

posted @ 2022-10-11 21:43 POLAYOR 阅读(54) 评论(0) 推荐(0)

Java数组
摘要:Java数组 数组的定义 相同类型数据的有序集合 相同类型的若干个数据 通过下标访问 变量的类型 变量的名字 = 变量的值; public class Array { public static void main(String[] args) { int[] nums; //声明 int nums 阅读全文

posted @ 2022-10-08 23:15 POLAYOR 阅读(22) 评论(0) 推荐(0)

导航