1.不要二
/**
* 不要二
* 欧几里得的距离不为二
* (x1-x2) *(x1-x2) +(y1-y2)*(y1-y2)的算术平方根
*/
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int w = sc.nextInt();
int h = sc.nextInt();
int count = 0;
int[][] array = new int[w][h];
//对网格进行遍历
for (int i = 0; i < w; i++) {
for (int j = 0; j < h; j++) {
//其中有一个为0
if (array[i][j] == 0) {
count++;
if (i + 2 < w) {
array[i + 2][j] = 1;
}