高人好:请高人帮我看看为什么我的程序不做图啊!
我的程序是在屏幕上首先绘制100个空方块,然后将100个空方块填充为颜色2的颜色,为什么不填充啊!
#include<graphics.h>
#include<conio.h>
struct FF{
int left,top,right,bottom;
};
struct FF graph={200,200,400,400};
struct FF dot[11][11];
void draw_graph(struct FF *g);
void draw_dot(struct FF dot[11][11]);
int main(void)
{
int gdriver=DETECT,gmode;
clrscr();
initgraph(&gdriver,&gmode,"c:\\tc");
draw_graph(&graph);
draw_dot(dot);
getch();
closegraph();
return 0;
}
void draw_graph(struct FF *g) file://绘制空方块
{
int i;
setcolor(3);
rectangle(g->left,g->top,g->right,g->bottom);
for(i=1;i<=10;i++)
{
line(g->left,g->top+i*20-20,g->right,g->top+i*20-20);
line(g->left+i*20-20,g->top,g->left+i*20-20,g->bottom);
}
}
void draw_dot(struct FF dot[11][11]) //填充函数
{
int i,j,k,m,n;
for(k=1;k<=10;k++) //set every line first element
{
dot[k][1].left=200;
dot[k][1].top=200+k*20-20;
dot[k][1].right=220;
dot[k][1].bottom=220+k*20-20;
}
for(i=1;i<=10;i++)
{
for(j=2;j<=10;j++)
{
dot[i][j].left=dot[i][j-1].left+20;
dot[i][j].top=dot[i][j-1].top;
dot[i][j].right=dot[i][j-1].right+20;
dot[i][j].bottom=dot[i][j-1].bottom;
}
}
setfillstyle(1,2);
for(m=1;m<=10;m++)
{
for(n=1;n<=10;n++)
{
bar(dot[i][j].left,dot[i][j].top,dot[i][j].right,dot[i][j].bottom);
}
}
}
求助!图形做图问题!