1 public class Tromino { 2 3 static int num = 2; 4 //x 对应 第二维 5 //y 对应 第一维 6 static int[][] panel = { 7 {0,0,0,0,0,0,0,0}, 8 {0,0,0,0,0,0,0,0}, 9 {0,0,0,0,0,0,1,0}, 10 {0,0,0,0,0,0,0,0}, 11 {0,0,0,0,0,0,0,0}, 12 {0,0,0,0,0,0,0,0}, 13 {0,0,0,0,0,0,0,0…