我如何在codeBlock中使用图形头文件?

时间:2017-05-28 07:59:27

标签: c++ graphics codeblocks

最近我开始了一个c ++项目。对于这个项目,我需要使用图形但是在CodeBlock中我不能使用图形头文件。

这里How to use graphics.h in codeblocks?我找到了一个解决方案,但它不起作用。当我只是运行此代码

#include<graphics.h>
int main(){  

    return 0;
}

运行时没有错误。但是当我运行此代码时,我的程序就崩溃了。

#include<graphics.h>
#include<conio.h>
int main()
{
    int gd=DETECT,gm,left=100,top=100,right=200,bottom=200,x=300,y=150,radius=50;
    initgraph(&gd, &gm, "C:\\TC\\BGI");
    rectangle(left, top, right, bottom);
    circle(x, y, radius);
    bar(left + 300, top, right + 300, bottom);
    line(left - 10, top + 150, left + 410, top + 150);
    ellipse(x, y + 200, 0, 360, 100, 50);
    outtextxy(left + 100, top + 325, "My First C Graphics Program");

    getch();
    closegraph();
    return 0;
}

我是程序员的新手。请给我一个解决方案。

0 个答案:

没有答案