爱不单行 发表于 2014-12-25 12:38:12

在图形模式中board_flag[i][j] 的作用

#include "stdio.h"
#include "graphics.h"
#include "conio.h"
void main()
{
        int i,j;
        int board_flag;
      int driver,mode;
       driver=VGA;
       mode=VGAHI;
       for(i=0; i<8; i++)
       {
                for(j=0; j<8; j++)
                {
                        board_flag = 0;
                }
       }
       initgraph(&driver,&mode,"c:\\JMSOFT\\DRV");
       getch();
       closegraph();
}
。。。。

其中定义board_flag有什么作用?
页: [1]
查看完整版本: 在图形模式中board_flag[i][j] 的作用