1 Star 1 Fork 0

那么彼时彼刻/demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
4.1.1 画一个实心圆.cpp 356 Bytes
一键复制 编辑 原始数据 按行查看 历史
那么彼时彼刻 提交于 2019-06-03 22:13 . 6/3
#include <graphics.h> // 引用 EasyX 图形库
#include <conio.h>
int main()
{
initgraph(640, 480); // 初始化640×480的画布
setcolor(YELLOW); // 圆的线条为黄色
setfillcolor(GREEN); // 圆内部位绿色填充
fillcircle(100, 100, 20); // 画圆,圆心(100, 100),半径 20
getch(); // 按任意键继续
closegraph(); // 关闭图形界面
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/cy--8730/ctmdd.git
git@gitee.com:cy--8730/ctmdd.git
cy--8730
ctmdd
demo
master

搜索帮助