#include<stdio.h>
#include <conio.h>
#include<math.h>
#include <graphics.h> // 引用图形库头文件
#define N 12
int List[N][N];
void draw() {
for (int i = 0; i < N; i++) {
int x = 200 * cos(2 * 3.14 * i / N);
int y = 200 * sin(2 * 3.14 * i / N);
List[i][0] = x + 200;
List[i][1] = y + 200;
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
line(List[i][0], List[i][1], List[j][0], List[j][1]);
}
}
}
int main()
{
initgraph(400, 400); // 创建绘图窗口,大小为 640x480 像素
setbkcolor(RED);/*设置背景颜色为红色*/
cleardevice();/*刷新窗口*/
draw();
getch(); // 按任意键继续
closegraph(); // 关闭绘图窗口
return 0;
}