122.绘制圆弧
Posted 程序员编程指南
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了122.绘制圆弧相关的知识,希望对你有一定的参考价值。
#include <graphics.h>
void main()
int gdriver=DETECT,gmode;
initgraph(&gdriver,&gmode,"c:\\\\tc");
cleardevice();
moveto(160,120);
linerel(320,0);
linerel(0,240);
linerel(-320,0);
linerel(0,-240);
getch();
closegraph();
以上是关于122.绘制圆弧的主要内容,如果未能解决你的问题,请参考以下文章