摘要: package com.oop; //值传递 public class Demo04 { public static void main(String[] args) { int a =1; System.out.println(a);//1 Demo04.change(a); System.out 阅读全文
posted @ 2020-09-13 16:39 苔米的香味 阅读(125) 评论(0) 推荐(0) 编辑
摘要: package com.kuang.array; public class ArrayDemo08 { public static void main(String[] args) { //1.创建一个二维数组 11*11 0:没有棋子 1:黑棋 2:白棋 int[][] array1 = new 阅读全文
posted @ 2020-09-13 15:56 苔米的香味 阅读(89) 评论(0) 推荐(0) 编辑