没进行图形系统初始化 或者是没有在编译配置中选中 Graphics.lib或者你的TC路径问题,路径中似乎不能有中文没用TC,以上全是猜测
晕了,不过还是谢谢楼下的能不能给个显示矩形的例子??
一个简单的矩形[CODE]#include "graphics.h"#include "stdio.h"#include "conio.h"void main(){ int graphdriver=DETECT,graphmode;
initgraph(&graphdriver,&graphmode,""); cleardevice(); rectangle(100,100,300,400); getch(); closegraph();}[/CODE]