1

我在代码块 IDE 中执行了以下代码-

#include <iostream>
#include <graphics.h>
using namespace std;

int main()
{
    int gd = DETECT, gm;
    initgraph(&gd, &gm, "C:\TC\BGI");
    line(100, 200, 150, 250);
    cout << "Hello world!" << endl;

    return 0;
}

并在调试我的代码时在 graphics.h 中停止

int left=0, int right=0, int right=INT_MAX, int bottom=INT_MAX,

我已经包含了 WinBGIm 库。

4

3 回答 3

1

看起来像图形驱动程序初始化的问题。

您的 IDE 上以下代码的输出是什么?

#include <iostream>
#include <graphics.h>
using namespace std;

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

    int errorcode = graphresult();
    if (errorcode != grOk)
    {
        cout << "Graphics error: " <<  grapherrormsg(errorcode) << endl;
        return 1;
    }

    line(100, 200, 150, 250);
    cout << "Hello world!" << endl;

    return 0;
}
于 2014-08-29T07:39:03.197 回答
1

right在 graphics.h 中的这一行设置了两次:

int right=0, int right=INT_MAX

将行更改为:

int left=0, int top=0, int right=INT_MAX, int bottom=INT_MAX

于 2016-05-23T12:10:45.220 回答
0

您应该以这种方式更正graphics.h :

int left=0;
int top=0;
int right=INT_MAX;
int bottom=INT_MAX;
于 2015-05-10T17:23:55.260 回答