#include<stdio.h>
#include<graphics.h>
#include<stdlib.h>
#include<easyx.h>
#include<conio.h>//控制台界面(文本移动,删除,颜色设置)
int q;
int num = 1;
int arr[14][14] = { 0 };
void line()
{
setlinecolor(BLACK);
for (int x = 20; x < 600; x += 40)
line(x, 20, x, 580);
for (int y = 20; y < 600; y += 40)
line(20, y, 580, y);
}
void point()
{
setfillcolor(BLACK);
fillcircle(20 + 3 * 40, 20 + 3 * 40, 5);
fillcircle(20 + 11* 40, 20 + 3 * 40, 5);
fillcircle(20 + 3 * 40, 20 + 11 * 40, 5);
fillcircle(20 + 11 * 40, 2