原帖由 [bold][underline]死了都要C[/underline][/bold] 于 2007-12-3 17:33 发表 [url=http://bbs.]
" border="0" />[/url]
代码发上来``看看```
#include<graphics.h>
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
int main()
{
int gdriver=DETECT,gmode,errorcode;
int midx,midy,i;
initgraph(&gdriver,&gmode,"");
errorcode=graphresult();
if(errorcode!=grOk)
{
printf("Graphics error:%s\n",grapherrormsg(errorcode));
printf("Press any key to halt");
getch();
exit(1);
}
midx=getmaxx()/2;
midy=getmaxy()/2;
for(i=EMPTY_FILL;i<USER_FILL;i++)
{
setfillstyle(i,getmaxcolor());
bar3d(midx-50,midy-50,midx+50,midy+50,10,1);
getch();
}
closegraph();
return;
}
错误就在这一行。可能也是2楼说的那样吧。
[[italic] 本帖最后由 ouxianzhi520 于 2007-12-3 17:46 编辑 [/italic]]