C++怎么画椭圆?

Easy X 中有个这个 但不会用void ellipse( int left, int top, int right, int bottom);
2024-11-27 04:40:33
推荐回答(2个)
回答1:

#include "stdafx.h"

#include
#include
int main()
{
initgraph(300, 300); //图形方式初始化
ellipse(200, 200, 100, 50); //以(200,200)为中心的椭圆
_getch(); //按任意键继续
closegraph(); //退出图形状态
return 0;
}

回答2:

前两个参数为左上角的坐标
后两个参数为右下角的坐标