graphics.h 在 windows 7 64 位中无法使用 MinGW 的代码块
graphics.h not working in code blocks with MinGW in windows 7 64bit
我已经从以下站点设置了在 CodeBlocks 中执行图形代码所需的图形文件:-
http://www.codewithc.com/how-to-include-graphics-h-in-codeblocks
然后我尝试了这个示例代码。
#include <graphics.h>
int main( )
{
initwindow(400, 300, "First Sample");
circle(100, 50, 40);
while (!kbhit( ))
{
delay(200);
}
return 0;
}
但是当我 运行 代码块中的代码时,我得到了这个
谁能解决我的问题?
这是因为graphics.h
是Borland 1989年为16位MS DOS计算机开发的BGI图形库。但是您使用的是 64 位 Windows 计算机。
解决方案:不要使用 28 岁,non-standard 图书馆。
我已经从以下站点设置了在 CodeBlocks 中执行图形代码所需的图形文件:-
http://www.codewithc.com/how-to-include-graphics-h-in-codeblocks
然后我尝试了这个示例代码。
#include <graphics.h>
int main( )
{
initwindow(400, 300, "First Sample");
circle(100, 50, 40);
while (!kbhit( ))
{
delay(200);
}
return 0;
}
但是当我 运行 代码块中的代码时,我得到了这个
谁能解决我的问题?
这是因为graphics.h
是Borland 1989年为16位MS DOS计算机开发的BGI图形库。但是您使用的是 64 位 Windows 计算机。
解决方案:不要使用 28 岁,non-standard 图书馆。