gpt4 book ai didi

c++ - Graphics.h c++ 未定义对各种函数的引用,如 line()、initgraph()

转载 作者:搜寻专家 更新时间:2023-10-31 01:39:16 26 4
gpt4 key购买 nike

<分区>

#include<graphics.h>
#include<stdio.h>

main()
{
int gd=DETECT,gm;
int i,x,y;
initgraph(&gd,&gm,"");
line(0,0,640,0);
line(0,0,0,480);
line(639,0,639,480);
line(639,479,0,479);
for(i=0;i<=1000;i++)
{
x=rand()%639;
y=rand()%480;
putpixel(x,y,15);
}
getch();
closegraph();
}

下面是一个基本的图形程序,错误显示为

  1. 对“initgraph”的 undefined reference

  2. 对“关闭图”的 undefined reference

  3. 对“行”的 undefined reference [4 次]

  4. 对“putpixel”的 undefined reference

    编译器:代码块;语言:c++;


我已经复制了 include 文件夹中的 graphics.h 和 winbgim.h 以及 lib 文件夹中的 libbgi.a 我还链接了所有需要链接的库。请帮忙。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com