有没有办法在Codelite中包含graphics.h库? 我不想使用CodeBlocks或Devc ++。 我需要它用于我的大学项目。 我知道如何将它包含在CodeBlocks和Devc ++中,但是当我使用我在Codelite中编写的旧代码时会出现很多错误。 screenshot _screenshot
答案 0 :(得分:0)
有趣......这对我有用
我写了一个小程序
#include <graphics.h>
#include <stdio.h>
#include <conio.h>
int main()
{
int x = 320, y = 240, radius;
initgraph();
for ( radius = 25; radius <= 125 ; radius = radius + 20)
circle(x, y, radius);
getch();
return 0;
}
并编译它。它在Debug文件夹中创建了一个名为&#39; project&#39;的二进制文件。当我通过双击它运行它没有显示任何东西。所以
1) I opened cmd
2) dragged the binary into it.. It saved me the time to type the path myself
3) Pressed enter
4) Does not work the first time
5) Pressed a key to come back to prompt
6) Pressed up key to execute the binary again and pressed enter
7) Did step 6 on the other display and it worked !!!
我知道这不是一个解决方案,但仍然是一个起点....
编辑:我有一个双显示器,当我把cmd提示一个显示器工作,另一个它不起作用...可能它与显示参数有关但我不确定...