通过判断猜出一个人的生日(月份的那一天)

时间:2021-01-04 18:58:36

给出二进制的五个数:1,2,4,8,16得出五个数组:

第一个数组:

1 35 7
9 11 1315
17 19 2123
25 27 2931

第二个数组:

2 36 7
10 11 1415
18 19 2223
26 27 3031

第三个数组:

4 56 7
12 13 1415
20 21 2223
28 29 3031

第四个数组:

8 910 11
12 13 1415
24 25 2627
28 29 3031

第五个数组:

16 1718 19
20 21 2223
24 25 2627
28 29 3031

通过判断可猜出生日,相关Java多维数组代码实现如下:

import java.util.Scanner;


public class Datestest {

public static void main(String[] args) {
int [][][] date={{{1,3,5,7},{9,11,13,15},{17,19,21,23},{25,27,29,31}},
{{2,3,6,7},{10,11,14,15},{18,19,22,23},{26,27,30,31}},
{{4,5,6,7},{12,13,14,15},{20,21,22,23},{28,29,30,31}},
{{8,9,10,11},{12,13,14,15},{24,25,26,27},{28,29,30,31}},
{{16,17,18,19},{20,21,22,23},{24,25,26,27},{28,29,30,31}}
};
int days=0;
for(int i=0;i<date.length;i++){
for(int j=0;j<date[i].length;j++){
for(int k=0;k<date[i][j].length;k++){
System.out.print(date[i][j][k]+"\t");
}
System.out.println();
}
Scanner sc=new Scanner(System.in);
System.out.println("请输入1(表示生日在该数组)或0(表示生日不在该数组):");
int a=sc.nextInt();
if(a==1){
days+=date[i][0][0];
}
}
System.out.println("你的生日是:"+days);

}

}