gpt4 book ai didi

c++ - 在 C++ Graphics.h 中绘制圆弧

转载 作者:行者123 更新时间:2023-11-30 03:18:10 25 4
gpt4 key购买 nike

我使用 graphics.h 是为了从 C++ 中的一些图形开始,但是当我运行代码时,程序崩溃了。我使用 CodeBlocks 作为编译器,使用 Windows 8.1 作为操作系统。我应该怎么做才能让它发挥作用?这是代码:

#include <graphics.h>

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

arc(200, 200, 0, 130, 50);

getch();
closegraph();
}

最佳答案

“我应该怎么做才能让它发挥作用?”

1) 忘记 graphics.h 它已经过时了。

2) 为自己获取一个现代编译器(例如;Clang 7.1、GCC 8.3 或 Visual Studio 2017)。

3) 选择一个现代图形库。 SFMLSDL是受欢迎的选择。

关于c++ - 在 C++ Graphics.h 中绘制圆弧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54929062/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com