是否可以在Codelite中包含graphics.h库?
我不想使用CodeBlocks或Devc ++。
我的大学项目需要它。
我知道如何将其包含在CodeBlocks和Devc ++中,但是当我使用我在Codelite中编写的旧代码时,会出现很多错误。
screenshot _screenshot
最佳答案
有趣...这对我有用
我写了一个小程序
#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;
}
并进行编译。它在名为“ project”的Debug文件夹中创建了一个二进制文件。当我双击运行它时,它什么都不显示。所以
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提示符显示到一个显示器时,它可以工作,而在另一个显示器上,它不起作用...可能与显示参数有关,但我不确定...
关于c++ - 如何在Codelite中包含graphics.h?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41823269/