找不到-lbgi-错误。代码块<graphics.h>头文件错误

时间:2020-09-05 10:33:44

标签: graphics codeblocks

#include <iostream>
#include <graphics.h>
#include <conio.h>

using namespace std;

int main()
{
    int gd = DETECT, gm;
    initgraph(&gd, &gm,"C:\\TC\\BGI");

    arc(200, 200, 400, 100, 50);

    getch();
    closegraph();
    return 0;

}

运行此代码后,错误即将来临,这是Build messege的图片。请有人帮我解决这个问题。 :(

enter image description here

0 个答案:

没有答案